]> git.baikalelectronics.ru Git - arm-tf.git/commitdiff
Remove deprecated macro from TF-A code
authorManish V Badarkhe <Manish.Badarkhe@arm.com>
Wed, 7 Oct 2020 15:04:06 +0000 (16:04 +0100)
committerManish Pandey <manish.pandey2@arm.com>
Mon, 12 Oct 2020 10:40:22 +0000 (10:40 +0000)
Removed '__ASSEMBLY__' deprecated macro from TF-A code

Change-Id: I9082a568b695acb5b903f509db11c8672b62d9d0
Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
Makefile
include/drivers/marvell/cache_llc.h
plat/nvidia/tegra/include/drivers/memctrl_v2.h
plat/nvidia/tegra/include/t186/tegra_mc_def.h

index a9a4d9058a8843063ffaff82be8e2ecbf2a32017..cb47491a458a3a101b1699a7beae441a7336f00d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1067,8 +1067,7 @@ ifneq ($(findstring clang,$(notdir $(CC))),)
 else
     CPPFLAGS           +=      -Wno-error=deprecated-declarations -Wno-error=cpp
 endif
-# __ASSEMBLY__ is deprecated in favor of the compiler-builtin __ASSEMBLER__.
-ASFLAGS        += -D__ASSEMBLY__
+
 # AARCH32/AARCH64 macros are deprecated in favor of the compiler-builtin __aarch64__.
 ifeq (${ARCH},aarch32)
         $(eval $(call add_define,AARCH32))
index d6dd65382f52963bde639a89ae25d579f944cb66..72111b374ae382cc78885756af9b44f4c3b5d9e2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2018 Marvell International Ltd.
+ * Copyright (C) 2018-2020 Marvell International Ltd.
  *
  * SPDX-License-Identifier:     BSD-3-Clause
  * https://spdx.org/licenses
@@ -57,6 +57,6 @@ int llc_sram_enable(int ap_index, int size);
 void llc_sram_disable(int ap_index);
 int llc_sram_test(int ap_index, int size, char *msg);
 #endif /* LLC_SRAM */
-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */
 
 #endif /* CACHE_LLC_H */
index 1e153063a6e3e242b29f55f7e037ce330207059d..9af3027ea3ae9aaf22aa508da50b837fd5308fff 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
  * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
  *
  * SPDX-License-Identifier: BSD-3-Clause
@@ -26,7 +26,7 @@
 #define MC_SMMU_BYPASS_CONFIG_SETTINGS         (MC_SMMU_BYPASS_CONFIG_WRITE_ACCESS_BIT | \
                                                 MC_SMMU_CTRL_TBU_BYPASS_SPL_STREAMID)
 
-#ifndef __ASSEMBLY__
+#ifndef        __ASSEMBLER__
 
 #include <assert.h>
 
@@ -53,9 +53,9 @@ typedef struct mc_regs {
                .val = 0xFFFFFFFFU, \
        }
 
-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */
 
-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__
 
 #include <lib/mmio.h>
 
index 398453eb9599707ea66b25549c3ef6632a722664..fa447725baac74603b5ac3a8121171d5c33e3ebc 100644 (file)
 #define  MC_CLIENT_HOTRESET_CTRL1_SCE_FLUSH_ENB                        (1U << 24)
 #define MC_CLIENT_HOTRESET_STATUS1                             0x974U
 
-#ifndef __ASSEMBLY__
+#ifndef __ASSEMBLER__
 
 /*******************************************************************************
  * Structure to hold the transaction override settings to use to override
@@ -393,6 +393,6 @@ typedef struct mc_streamid_security_cfg {
                                  MC_TXN_OVERRIDE_CONFIG_CGID_##so_dev_axi_id); \
        } while (0)
 
-#endif /* __ASSEMBLY__ */
+#endif /* __ASSEMBLER__ */
 
 #endif /* TEGRA_MC_DEF_H */