]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ARM: zx: fix building with CONFIG_THUMB2_KERNEL
authorArnd Bergmann <arnd@arndb.de>
Thu, 21 May 2015 08:36:42 +0000 (10:36 +0200)
committerArnd Bergmann <arnd@arndb.de>
Fri, 22 May 2015 14:45:54 +0000 (16:45 +0200)
The newly added zx platform causes a build error when
CONFIG_THUMB2_KERNEL is enabled:

arch/arm/mach-zx/headsmp.S:16: Error: invalid immediate for address calculation (value = 0x00000004)

I'm assuming that the ROM code that is calling these entry
points runs in ARM mode, so there would be another problem
in the same file, and we can solve both problems at once
by adding a '.arm' statement that will make zx_resume_jump
and zx_secondary_startup both be built as ARM code.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Jun Nie <jun.nie@linaro.org>
Tested-by: Jun Nie <jun.nie@linaro.org>
arch/arm/mach-zx/headsmp.S

index c0fece0c3955bbdfa913247536865efb95221b0d..a1aa4028389f1c9ddd260488b21f4a007fa08685 100644 (file)
@@ -10,6 +10,7 @@
 #include <linux/linkage.h>
 
        .align 3
+       .arm
 
 /* It runs from physical address */
 ENTRY(zx_resume_jump)