diff options
author | Jamie Iles <jamie@jamieiles.com> | 2011-11-04 01:13:20 +0000 |
---|---|---|
committer | Jamie Iles <jamie@jamieiles.com> | 2011-11-09 09:51:42 +0000 |
commit | 0836b5cdd23d573bf7ec57f73ff774b3ad660bf4 (patch) | |
tree | 516323e7c5e788a69ea342272e14010daac55c0b /arch | |
parent | 1ea6b8f48918282bdca0b32a34095504ee65bab5 (diff) | |
download | linux-3.10-0836b5cdd23d573bf7ec57f73ff774b3ad660bf4.tar.gz linux-3.10-0836b5cdd23d573bf7ec57f73ff774b3ad660bf4.tar.bz2 linux-3.10-0836b5cdd23d573bf7ec57f73ff774b3ad660bf4.zip |
ARM: picoxcell: add extra temp register to addruart
639da5ee3 (ARM: add an extra temp register to the low level debugging
addruart macro) didn't include picoxcell as it hadn't been merged at the
time. Fix up the compile breakage by adding the extra temp parameter.
Signed-off-by: Jamie Iles <jamie@jamieiles.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-picoxcell/include/mach/debug-macro.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-picoxcell/include/mach/debug-macro.S b/arch/arm/mach-picoxcell/include/mach/debug-macro.S index 8f2c234ed9d..58d4ee3ae94 100644 --- a/arch/arm/mach-picoxcell/include/mach/debug-macro.S +++ b/arch/arm/mach-picoxcell/include/mach/debug-macro.S @@ -14,7 +14,7 @@ #define UART_SHIFT 2 - .macro addruart, rp, rv + .macro addruart, rp, rv, tmp ldr \rv, =PHYS_TO_IO(PICOXCELL_UART1_BASE) ldr \rp, =PICOXCELL_UART1_BASE .endm |