Skip to content

Commit

Permalink
ARM: SAMSUNG: Fixup commit 4e6d488
Browse files Browse the repository at this point in the history
Commit 4e6d488 either missed out the
following machine files or somehow managed to clash between merges.

Fixup the three files missing the second parameter to addruart macro
to allow them to build.

Fixes the following warnings in arch/arm/kernel/debug.c:
arch/arm/kernel/debug.S: Assembler messages:
arch/arm/kernel/debug.S:167: Error: too many positional arguments
arch/arm/kernel/debug.S:183: Error: too many positional arguments

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
  • Loading branch information
Ben Dooks committed Mar 15, 2010
1 parent 65e543f commit 0e17226
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-s3c64xx/include/mach/debug-macro.S
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* aligned and add in the offset when we load the value here.
*/

.macro addruart, rx
.macro addruart, rx, rtmp
mrc p15, 0, \rx, c1, c0
tst \rx, #1
ldreq \rx, = S3C_PA_UART
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-s5p6440/include/mach/debug-macro.S
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* aligned and add in the offset when we load the value here.
*/

.macro addruart, rx
.macro addruart, rx, rtmp
mrc p15, 0, \rx, c1, c0
tst \rx, #1
ldreq \rx, = S3C_PA_UART
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-s5p6442/include/mach/debug-macro.S
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <mach/map.h>
#include <plat/regs-serial.h>

.macro addruart, rx
.macro addruart, rx, rtmp
mrc p15, 0, \rx, c1, c0
tst \rx, #1
ldreq \rx, = S3C_PA_UART
Expand Down

0 comments on commit 0e17226

Please sign in to comment.