mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

The commit 6bb49c876c
("style(hooks): adds Arm copyright style fix")
is enforcing proper case for ARM. That's why fix it in plat/xilinx to
make sure that pre-commit.copyright won't be touching platform specific
files.
Change-Id: I49c66e18d46ed871a6aa128c9b2a403d0cf83416
Signed-off-by: Michal Simek <michal.simek@amd.com>
14 lines
327 B
C
14 lines
327 B
C
/*
|
|
* Copyright (c) 2018, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <platform_def.h>
|
|
|
|
static const uint8_t plat_power_domain_tree_desc[] = {1, PLATFORM_CORE_COUNT};
|
|
|
|
const uint8_t *plat_get_power_domain_tree_desc(void)
|
|
{
|
|
return plat_power_domain_tree_desc;
|
|
}
|