Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: highbank: move debug macros to include/debug

Move highbank debug-macro.S over to common debug macro directory.

Also, remove v7 specific movw/movt instructions so this can compile under
v6 mode.

Signed-off-by: Rob Herring <rob.herring@calxeda.com>

+3 -4
+1
arch/arm/Kconfig.debug
··· 376 376 config DEBUG_LL_INCLUDE 377 377 string 378 378 default "debug/icedcc.S" if DEBUG_ICEDCC 379 + default "debug/highbank.S" if DEBUG_HIGHBANK_UART 379 380 default "mach/debug-macro.S" 380 381 381 382 config EARLY_PRINTK
+2 -4
arch/arm/mach-highbank/include/mach/debug-macro.S arch/arm/include/debug/highbank.S
··· 10 10 */ 11 11 12 12 .macro addruart,rp,rv,tmp 13 - movw \rv, #0x6000 14 - movt \rv, #0xfee3 15 - movw \rp, #0x6000 16 - movt \rp, #0xfff3 13 + ldr \rv, =0xfee36000 14 + ldr \rp, =0xfff36000 17 15 .endm 18 16 19 17 #include <asm/hardware/debug-pl01x.S>