aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-exynos4/include/mach/debug-macro.S
diff options
context:
space:
mode:
authorThomas Abraham <thomas.ab@samsung.com>2011-03-25 16:18:18 +0900
committerKukjin Kim <kgene.kim@samsung.com>2011-03-28 16:17:54 +0900
commitb9ab19f936e823c31e66702ee553e4d18e910c9a (patch)
tree82e998836ddacf4c616b9025098d0e0413e67787 /arch/arm/mach-exynos4/include/mach/debug-macro.S
parentARM: EXYNOS4: Fix smsc9215 irq polarity on SMDKC210 (diff)
downloadlinux-dev-b9ab19f936e823c31e66702ee553e4d18e910c9a.tar.xz
linux-dev-b9ab19f936e823c31e66702ee553e4d18e910c9a.zip
ARM: EXYNOS4: Fix addruart macro
Fix incorrect conditional execution of ldr instructions in addruart macro. Signed-off-by: Thomas Abraham <thomas.abraham@samsung.com> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos4/include/mach/debug-macro.S')
-rw-r--r--arch/arm/mach-exynos4/include/mach/debug-macro.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-exynos4/include/mach/debug-macro.S b/arch/arm/mach-exynos4/include/mach/debug-macro.S
index 58bbd049a6c4..a442ef861167 100644
--- a/arch/arm/mach-exynos4/include/mach/debug-macro.S
+++ b/arch/arm/mach-exynos4/include/mach/debug-macro.S
@@ -21,8 +21,8 @@
*/
.macro addruart, rp, rv
- ldreq \rp, = S3C_PA_UART
- ldrne \rv, = S3C_VA_UART
+ ldr \rp, = S3C_PA_UART
+ ldr \rv, = S3C_VA_UART
#if CONFIG_DEBUG_S3C_UART != 0
add \rp, \rp, #(0x10000 * CONFIG_DEBUG_S3C_UART)
add \rv, \rv, #(0x10000 * CONFIG_DEBUG_S3C_UART)