summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarrison Mutai <harrison.mutai@arm.com>2026-06-30 08:24:37 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2026-06-30 08:24:37 +0000
commit7cb424365cb80e4d7e45e2f16bc5eab1c0351475 (patch)
tree249af5f92732d90d55be1c5b45f9f5fa265bac9d
parentb35299d6fc5164ccff06abcbf47dba8f7ebedccd (diff)
parent14a445843e041f0aadb22affa7d233ea4dd1ffe3 (diff)
downloadarm-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.h6
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