From: Masahiro Yamada Date: Tue, 27 May 2014 02:16:29 +0000 (+0900) Subject: arm: fix a double-definition error of _start symbol X-Git-Tag: v2014.07~74^2~9 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0a26e1d;p=karo-tx-uboot.git arm: fix a double-definition error of _start symbol The symbol "_start" is defined twice in arch/arm/lib/vectors.S: around line 48 and line 54. If CONFIG_SYS_DV_NOR_BOOT_CFG is defined (as on calimain board), build fails: arch/arm/lib/vectors.S: Assembler messages: arch/arm/lib/vectors.S:54: Error: symbol `_start' is already defined make[1]: *** [arch/arm/lib/vectors.o] Error 1 make: *** [arch/arm/lib] Error 2 Signed-off-by: Masahiro Yamada Cc: Albert ARIBAUD --- diff --git a/arch/arm/lib/vectors.S b/arch/arm/lib/vectors.S index d68cc477dc..e6538eff43 100644 --- a/arch/arm/lib/vectors.S +++ b/arch/arm/lib/vectors.S @@ -43,8 +43,6 @@ ************************************************************************* */ -_start: - #ifdef CONFIG_SYS_DV_NOR_BOOT_CFG .word CONFIG_SYS_DV_NOR_BOOT_CFG #endif