-
- Downloads
Switch AARCH32/AARCH64 to __aarch64__
NOTE: AARCH32/AARCH64 macros are now deprecated in favor of __aarch64__.
All common C compilers pre-define the same macros to signal which
architecture the code is being compiled for: __arm__ for AArch32 (or
earlier versions) and __aarch64__ for AArch64. There's no need for TF-A
to define its own custom macros for this. In order to unify code with
the export headers (which use __aarch64__ to avoid another dependency),
let's deprecate the AARCH32 and AARCH64 macros and switch the code base
over to the pre-defined standard macro. (Since it is somewhat
unintuitive that __arm__ only means AArch32, let's standardize on only
using __aarch64__.)
Change-Id: Ic77de4b052297d77f38fc95f95f65a8ee70cf200
Signed-off-by:
Julius Werner <jwerner@chromium.org>
Showing
- Makefile 6 additions, 6 deletionsMakefile
- bl1/bl1_fwu.c 4 additions, 4 deletionsbl1/bl1_fwu.c
- bl1/bl1_main.c 9 additions, 9 deletionsbl1/bl1_main.c
- bl2/bl2_main.c 9 additions, 9 deletionsbl2/bl2_main.c
- bl2u/bl2u_main.c 2 additions, 2 deletionsbl2u/bl2u_main.c
- common/backtrace/backtrace.c 4 additions, 4 deletionscommon/backtrace/backtrace.c
- common/bl_common.c 3 additions, 3 deletionscommon/bl_common.c
- drivers/arm/ccn/ccn.c 3 additions, 3 deletionsdrivers/arm/ccn/ccn.c
- drivers/arm/gic/v3/gicv3_main.c 4 additions, 4 deletionsdrivers/arm/gic/v3/gicv3_main.c
- drivers/arm/gic/v3/gicv3_private.h 4 additions, 4 deletionsdrivers/arm/gic/v3/gicv3_private.h
- include/common/ep_info.h 1 addition, 1 deletioninclude/common/ep_info.h
- include/common/runtime_svc.h 6 additions, 6 deletionsinclude/common/runtime_svc.h
- include/lib/el3_runtime/context_mgmt.h 2 additions, 2 deletionsinclude/lib/el3_runtime/context_mgmt.h
- include/lib/el3_runtime/cpu_data.h 12 additions, 12 deletionsinclude/lib/el3_runtime/cpu_data.h
- include/lib/el3_runtime/pubsub_events.h 2 additions, 2 deletionsinclude/lib/el3_runtime/pubsub_events.h
- include/lib/utils_def.h 9 additions, 9 deletionsinclude/lib/utils_def.h
- include/lib/xlat_tables/xlat_mmu_helpers.h 9 additions, 9 deletionsinclude/lib/xlat_tables/xlat_mmu_helpers.h
- include/lib/xlat_tables/xlat_tables_arch.h 3 additions, 3 deletionsinclude/lib/xlat_tables/xlat_tables_arch.h
- include/lib/xlat_tables/xlat_tables_defs.h 1 addition, 1 deletioninclude/lib/xlat_tables/xlat_tables_defs.h
- include/plat/arm/common/arm_def.h 4 additions, 4 deletionsinclude/plat/arm/common/arm_def.h
Loading
Please register or sign in to comment