mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +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>
13 lines
307 B
C
13 lines
307 B
C
/*
|
|
* Copyright (c) 2013-2016, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#include <stdint.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;
|
|
}
|