Replace deprecated __ASSEMBLY__ macro with __ASSEMBLER__
authorBalint Dobszay <balint.dobszay@arm.com>
Fri, 11 Oct 2019 12:01:43 +0000 (14:01 +0200)
committerBalint Dobszay <balint.dobszay@arm.com>
Fri, 11 Oct 2019 12:12:24 +0000 (14:12 +0200)
Change-Id: I497072575231730a216220f84a6d349a48eaf5e3
Signed-off-by: Balint Dobszay <balint.dobszay@arm.com>
include/lib/cpus/aarch64/cortex_a53.h
include/lib/cpus/aarch64/cortex_a73.h

index ea7181ed46905bd7291a22ac57e67c9eec13d429..6fe67a9f3d361710dbd36ea10bd26ecfa2e3a16b 100644 (file)
@@ -76,8 +76,8 @@
 /*******************************************************************************
  * Helper function to access a53_cpuectlr_el1 register on Cortex-A53 CPUs
  ******************************************************************************/
-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__
 DEFINE_RENAME_SYSREG_RW_FUNCS(a53_cpuectlr_el1, CORTEX_A53_ECTLR_EL1)
-#endif
+#endif /* __ASSEMBLER__ */
 
 #endif /* CORTEX_A53_H */
index fb4f1ec0c5b0a8864efee5c79fbf1b3891a13751..271a33348c2782ad12e3a5f4328ca7449112302f 100644 (file)
@@ -38,8 +38,8 @@
 /*******************************************************************************
  * Helper function to access a73_cpuectlr_el1 register on Cortex-A73 CPUs
  ******************************************************************************/
-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__
 DEFINE_RENAME_SYSREG_RW_FUNCS(a73_cpuectlr_el1, CORTEX_A73_CPUECTLR_EL1)
-#endif
+#endif /* __ASSEMBLER__ */
 
 #endif /* CORTEX_A73_H */