mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00
fix(errata_report): correct typo
Change wrong __arch64__ to __aarch64__. Change-Id: I750fdb16958e0eadf8aebe24bec0e14488fa4787 Signed-off-by: Yann Gautier <yann.gautier@st.com>
This commit is contained in:
parent
e093b3fc8b
commit
322e60a6c7
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2017-2021, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -19,7 +19,7 @@
|
|||
# define BL_STRING "BL1"
|
||||
#elif defined(__aarch64__) && defined(IMAGE_BL31)
|
||||
# define BL_STRING "BL31"
|
||||
#elif !defined(__arch64__) && defined(IMAGE_BL32)
|
||||
#elif !defined(__aarch64__) && defined(IMAGE_BL32)
|
||||
# define BL_STRING "BL32"
|
||||
#elif defined(IMAGE_BL2) && BL2_AT_EL3
|
||||
# define BL_STRING "BL2"
|
||||
|
|
Loading…
Add table
Reference in a new issue