diff options
author | Mark Dykes <mardyk01@review.trustedfirmware.org> | 2020-01-10 19:39:17 +0000 |
---|---|---|
committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2020-01-10 19:39:17 +0000 |
commit | 436367966f3aa9699cbe54394f69d7c8cc70c010 (patch) | |
tree | 63270bd7d9087b76960afd11ef51b30890004407 /include/lib | |
parent | 1522958fcd4ab2f17f7b284f4bb674fc7a584ce8 (diff) | |
parent | 5b33ad174a03a5ccdcd6321c64d69167361dc21a (diff) | |
download | platform_external_arm-trusted-firmware-436367966f3aa9699cbe54394f69d7c8cc70c010.tar.gz platform_external_arm-trusted-firmware-436367966f3aa9699cbe54394f69d7c8cc70c010.tar.bz2 platform_external_arm-trusted-firmware-436367966f3aa9699cbe54394f69d7c8cc70c010.zip |
Merge "Unify type of "cpu_idx" across PSCI module." into integration
Diffstat (limited to 'include/lib')
-rw-r--r-- | include/lib/psci/psci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib/psci/psci.h b/include/lib/psci/psci.h index 7f7b7e3ff..b56e98b5f 100644 --- a/include/lib/psci/psci.h +++ b/include/lib/psci/psci.h @@ -20,7 +20,7 @@ #ifdef PLAT_NUM_PWR_DOMAINS #define PSCI_NUM_PWR_DOMAINS PLAT_NUM_PWR_DOMAINS #else -#define PSCI_NUM_PWR_DOMAINS (2 * PLATFORM_CORE_COUNT) +#define PSCI_NUM_PWR_DOMAINS (U(2) * PLATFORM_CORE_COUNT) #endif #define PSCI_NUM_NON_CPU_PWR_DOMAINS (PSCI_NUM_PWR_DOMAINS - \ |