提交 5f2c1b30 编写于 作者: R Russell King

ARM: footbridge: fix debug macros

0ea12930 (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: NRussell King <rmk+kernel@arm.linux.org.uk>
上级 613b152c
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
/* For NetWinder debugging */ /* For NetWinder debugging */
.macro addruart, rp, rv .macro addruart, rp, rv
mov \rp, #0x000003f8 mov \rp, #0x000003f8
orr \rv, \rp, #0x7c000000 @ physical orr \rv, \rp, #0xff000000 @ virtual
orr \rp, \rp, #0xff000000 @ virtual orr \rp, \rp, #0x7c000000 @ physical
.endm .endm
#define UART_SHIFT 0 #define UART_SHIFT 0
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册