mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00

This corrects the MISRA violation C2012-8.4: A compatible declaration shall be visible when an object or function with external linkage is defined. Change-Id: I0e554972c24b70abd5b563639482f267cd4e1b5e Signed-off-by: Nithin G <nithing@amd.com> Signed-off-by: Maheedhar Bollapalli <maheedharsai.bollapalli@amd.com>
15 lines
342 B
C
15 lines
342 B
C
/*
|
|
* Copyright (c) 2013-2016, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#include <stdint.h>
|
|
|
|
#include <plat/common/platform.h>
|
|
|
|
static const uint8_t plat_power_domain_tree_desc[] = {1, 4};
|
|
|
|
const uint8_t *plat_get_power_domain_tree_desc(void)
|
|
{
|
|
return plat_power_domain_tree_desc;
|
|
}
|