Commit b1dce713 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski

ARM: s3c24xx: Do not confuse local define with Kconfig

Drop CONFIG_ prefix from a local DEBUG_RESUME define guarding some
debugging code to avoid any confusion with Kconfig options.
Signed-off-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
parent 4d93cb41
...@@ -33,10 +33,11 @@ ...@@ -33,10 +33,11 @@
#include <mach/regs-gpio.h> #include <mach/regs-gpio.h>
#include <mach/regs-clock.h> #include <mach/regs-clock.h>
/* CONFIG_DEBUG_RESUME is dangerous if your bootloader does not /*
* S3C24XX_DEBUG_RESUME is dangerous if your bootloader does not
* reset the UART configuration, only enable if you really need this! * reset the UART configuration, only enable if you really need this!
*/ */
//#define CONFIG_DEBUG_RESUME //#define S3C24XX_DEBUG_RESUME
.text .text
...@@ -71,13 +72,13 @@ ENTRY(s3c_cpu_resume) ...@@ -71,13 +72,13 @@ ENTRY(s3c_cpu_resume)
str r12, [ r14, #0x54 ] str r12, [ r14, #0x54 ]
#endif #endif
#ifdef CONFIG_DEBUG_RESUME #ifdef S3C24XX_DEBUG_RESUME
mov r3, #'L' mov r3, #'L'
strb r3, [ r2, #S3C2410_UTXH ] strb r3, [ r2, #S3C2410_UTXH ]
1001: 1001:
ldrb r14, [ r3, #S3C2410_UTRSTAT ] ldrb r14, [ r3, #S3C2410_UTRSTAT ]
tst r14, #S3C2410_UTRSTAT_TXE tst r14, #S3C2410_UTRSTAT_TXE
beq 1001b beq 1001b
#endif /* CONFIG_DEBUG_RESUME */ #endif /* S3C24XX_DEBUG_RESUME */
b cpu_resume b cpu_resume
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment