diff options
| author | Harrison Mutai <harrison.mutai@arm.com> | 2026-06-30 08:24:37 +0000 |
|---|---|---|
| committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2026-06-30 08:24:37 +0000 |
| commit | 7cb424365cb80e4d7e45e2f16bc5eab1c0351475 (patch) | |
| tree | 249af5f92732d90d55be1c5b45f9f5fa265bac9d | |
| parent | b35299d6fc5164ccff06abcbf47dba8f7ebedccd (diff) | |
| parent | 14a445843e041f0aadb22affa7d233ea4dd1ffe3 (diff) | |
| download | arm-trusted-firmware-7cb424365cb80e4d7e45e2f16bc5eab1c0351475.tar.gz arm-trusted-firmware-7cb424365cb80e4d7e45e2f16bc5eab1c0351475.zip | |
Merge "fix(ti): use #ifdef for IMAGE_BL flags" into integration
| -rw-r--r-- | plat/ti/common/include/ti_platform_defs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plat/ti/common/include/ti_platform_defs.h b/plat/ti/common/include/ti_platform_defs.h index c61fccc30..f0626a10c 100644 --- a/plat/ti/common/include/ti_platform_defs.h +++ b/plat/ti/common/include/ti_platform_defs.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2026, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2017-2026, Arm Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -17,7 +17,7 @@ ******************************************************************************/ /* Size of cacheable stack */ -#if IMAGE_BL31 || IMAGE_BL1 +#if defined(IMAGE_BL31) || defined(IMAGE_BL1) #define PLATFORM_STACK_SIZE 0x800 #else #define PLATFORM_STACK_SIZE 0x1000 @@ -70,7 +70,7 @@ * used, choose the smallest value needed to map the required virtual addresses * for each BL stage. */ -#if IMAGE_BL1 +#ifdef IMAGE_BL1 #define MAX_XLAT_TABLES 2 #else #define MAX_XLAT_TABLES 4 |
