diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-01-28 20:57:57 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-01-31 10:53:39 +0000 |
commit | 5f2c1b30c7f60670c8b9d1cb1ea7c818b9c743a6 (patch) | |
tree | 99dd4c64e4c770c1902cd2a22c7723de1733d9bd /arch/arm/mach-footbridge | |
parent | 613b152c63e35095a929f9bb80441cbe91ff5e80 (diff) | |
download | op-kernel-dev-5f2c1b30c7f60670c8b9d1cb1ea7c818b9c743a6.zip op-kernel-dev-5f2c1b30c7f60670c8b9d1cb1ea7c818b9c743a6.tar.gz |
ARM: footbridge: fix debug macros
0ea1293 (arm: return both physical and virtual addresses from addruart)
changed the way the 'addruart' worked, making it return both the virt
and phys addresses. Unfortunately, for footbridge, these were reversed.
Fix that. Tested on Netwinder.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-footbridge')
-rw-r--r-- | arch/arm/mach-footbridge/include/mach/debug-macro.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-footbridge/include/mach/debug-macro.S b/arch/arm/mach-footbridge/include/mach/debug-macro.S index 3c9e0c4..30b971d 100644 --- a/arch/arm/mach-footbridge/include/mach/debug-macro.S +++ b/arch/arm/mach-footbridge/include/mach/debug-macro.S @@ -17,8 +17,8 @@ /* For NetWinder debugging */ .macro addruart, rp, rv mov \rp, #0x000003f8 - orr \rv, \rp, #0x7c000000 @ physical - orr \rp, \rp, #0xff000000 @ virtual + orr \rv, \rp, #0xff000000 @ virtual + orr \rp, \rp, #0x7c000000 @ physical .endm #define UART_SHIFT 0 |