diff options
Diffstat (limited to 'arch/arm/mach-s3c24xx/include/mach/debug-macro.S')
| -rw-r--r-- | arch/arm/mach-s3c24xx/include/mach/debug-macro.S | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/mach-s3c24xx/include/mach/debug-macro.S b/arch/arm/mach-s3c24xx/include/mach/debug-macro.S index 4135de87d1f..2558952e314 100644 --- a/arch/arm/mach-s3c24xx/include/mach/debug-macro.S +++ b/arch/arm/mach-s3c24xx/include/mach/debug-macro.S @@ -40,17 +40,17 @@  		addeq	\rd, \rx, #(S3C24XX_PA_GPIO - S3C24XX_PA_UART)  		addne	\rd, \rx, #(S3C24XX_VA_GPIO - S3C24XX_VA_UART)  		bic	\rd, \rd, #0xff000 -		ldr	\rd, [ \rd, # S3C2410_GSTATUS1 - S3C2410_GPIOREG(0) ] +		ldr	\rd, [\rd, # S3C2410_GSTATUS1 - S3C2410_GPIOREG(0)]  		and	\rd, \rd, #0x00ff0000  		teq	\rd, #0x00440000		@ is it 2440?  1004: -		ldr	\rd, [ \rx, # S3C2410_UFSTAT ] +		ldr	\rd, [\rx, # S3C2410_UFSTAT]  		moveq	\rd, \rd, lsr #SHIFT_2440TXF  		tst	\rd, #S3C2410_UFSTAT_TXFULL  	.endm  	.macro  fifo_full_s3c2410 rd, rx -		ldr	\rd, [ \rx, # S3C2410_UFSTAT ] +		ldr	\rd, [\rx, # S3C2410_UFSTAT]  		tst	\rd, #S3C2410_UFSTAT_TXFULL  	.endm @@ -68,18 +68,18 @@  		addeq	\rd, \rx, #(S3C24XX_PA_GPIO - S3C24XX_PA_UART)  		addne	\rd, \rx, #(S3C24XX_VA_GPIO - S3C24XX_VA_UART)  		bic	\rd, \rd, #0xff000 -		ldr	\rd, [ \rd, # S3C2410_GSTATUS1 - S3C2410_GPIOREG(0) ] +		ldr	\rd, [\rd, # S3C2410_GSTATUS1 - S3C2410_GPIOREG(0)]  		and	\rd, \rd, #0x00ff0000  		teq	\rd, #0x00440000		@ is it 2440?  10000: -		ldr	\rd, [ \rx, # S3C2410_UFSTAT ] +		ldr	\rd, [\rx, # S3C2410_UFSTAT]  		andne	\rd, \rd, #S3C2410_UFSTAT_TXMASK  		andeq	\rd, \rd, #S3C2440_UFSTAT_TXMASK  	.endm  	.macro fifo_level_s3c2410 rd, rx -		ldr	\rd, [ \rx, # S3C2410_UFSTAT ] +		ldr	\rd, [\rx, # S3C2410_UFSTAT]  		and	\rd, \rd, #S3C2410_UFSTAT_TXMASK  	.endm @@ -98,4 +98,4 @@  /* include the reset of the code which will do the work */ -#include <plat/debug-macro.S> +#include <debug/samsung.S>  |