• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2013-2016, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #include <stdint.h>
7 
8 #include <plat/common/platform.h>
9 
10 static const uint8_t plat_power_domain_tree_desc[] = {1, 4};
11 
plat_get_power_domain_tree_desc(void)12 const uint8_t *plat_get_power_domain_tree_desc(void)
13 {
14 	return plat_power_domain_tree_desc;
15 }
16