diff options
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-07-20 09:17:26 +0100 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-07-20 13:49:22 +0100 |
commit | 1083b2b315cd71f714eb0d0bca20e54ef7be02ad (patch) | |
tree | b5f88c2bf84088695aced9a36b7581141b661e4b /plat/mediatek/mt6795 | |
parent | bef9a10fe4b910767b94533f318cfaabe0e0ee01 (diff) | |
download | platform_external_arm-trusted-firmware-1083b2b315cd71f714eb0d0bca20e54ef7be02ad.tar.gz platform_external_arm-trusted-firmware-1083b2b315cd71f714eb0d0bca20e54ef7be02ad.tar.bz2 platform_external_arm-trusted-firmware-1083b2b315cd71f714eb0d0bca20e54ef7be02ad.zip |
PSCI: Fix types of definitions
Also change header guards to fix defects of MISRA C-2012 Rule 21.1.
Change-Id: Ied0d4b0e557ef6119ab669d106d2ac5d99620c57
Acked-by: Sumit Garg <sumit.garg@linaro.org>
Acked-by: Anson Huang <Anson.Huang@nxp.com>
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'plat/mediatek/mt6795')
-rw-r--r-- | plat/mediatek/mt6795/include/platform_def.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/plat/mediatek/mt6795/include/platform_def.h b/plat/mediatek/mt6795/include/platform_def.h index 6c64ba5de..0fa63a1a6 100644 --- a/plat/mediatek/mt6795/include/platform_def.h +++ b/plat/mediatek/mt6795/include/platform_def.h @@ -1,11 +1,13 @@ /* - * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __PLATFORM_DEF_H__ -#define __PLATFORM_DEF_H__ +#ifndef PLATFORM_DEF_H +#define PLATFORM_DEF_H + +#include <utils_def.h> #define PLAT_PRIMARY_CPU 0x0 @@ -146,7 +148,7 @@ #if ENABLE_PLAT_COMPAT #define PLATFORM_MAX_AFFLVL MPIDR_AFFLVL2 #else -#define PLAT_MAX_PWR_LVL 2 /* MPIDR_AFFLVL2 */ +#define PLAT_MAX_PWR_LVL U(2) /* MPIDR_AFFLVL2 */ #endif #define PLATFORM_CACHE_LINE_SIZE 64 @@ -239,4 +241,4 @@ #define PAGE_SIZE_2MB (1 << PAGE_SIZE_2MB_SHIFT) #define PAGE_SIZE_2MB_SHIFT TWO_MB_SHIFT -#endif /* __PLATFORM_DEF_H__ */ +#endif /* PLATFORM_DEF_H */ |