瀏覽代碼

arm: armv7m: clean up armv7m unified code compilation

unified syntax should be selected by config ARM_ASM_UNIFIED

Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Vikas Manocha 6 年之前
父節點
當前提交
d22336aad9
共有 4 個文件被更改,包括 3 次插入9 次删除
  1. 0 5
      arch/arm/include/asm/armv7m.h
  2. 1 3
      arch/arm/lib/crt0.S
  3. 1 0
      arch/arm/lib/relocate.S
  4. 1 1
      arch/arm/lib/vectors_m.S

+ 0 - 5
arch/arm/include/asm/armv7m.h

@@ -10,11 +10,6 @@
 #ifndef ARMV7M_H
 #define ARMV7M_H
 
-#if defined(__ASSEMBLY__)
-.syntax unified
-.thumb
-#endif
-
 /* armv7m fixed base addresses */
 #define V7M_SCS_BASE		0xE000E000
 #define V7M_NVIC_BASE		(V7M_SCS_BASE + 0x0100)

+ 1 - 3
arch/arm/lib/crt0.S

@@ -8,9 +8,7 @@
 #include <config.h>
 #include <asm-offsets.h>
 #include <linux/linkage.h>
-#ifdef CONFIG_CPU_V7M
-#include <asm/armv7m.h>
-#endif
+#include <asm/assembler.h>
 
 /*
  * This file handles the target-independent stages of the U-Boot

+ 1 - 0
arch/arm/lib/relocate.S

@@ -6,6 +6,7 @@
  */
 
 #include <asm-offsets.h>
+#include <asm/assembler.h>
 #include <config.h>
 #include <elf.h>
 #include <linux/linkage.h>

+ 1 - 1
arch/arm/lib/vectors_m.S

@@ -5,7 +5,7 @@
  */
 
 #include <config.h>
-#include <asm/armv7m.h>
+#include <asm/assembler.h>
 #include <linux/linkage.h>
 
 .type __hard_fault_entry, %function