projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69614fc
)
[PATCH] m68knommu: fix 68EZ328/config.c asm
author
Greg Ungerer
<
[email protected]
>
Wed, 28 Jun 2006 06:23:14 +0000
(16:23 +1000)
committer
Linus Torvalds
<
[email protected]
>
Wed, 28 Jun 2006 22:03:47 +0000
(15:03 -0700)
Fix 68EZ328/config.c asm to be clean for new gcc versions.
Signed-off-by: Greg Ungerer <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/m68knommu/platform/68EZ328/config.c
patch
|
blob
|
history
diff --git
a/arch/m68knommu/platform/68EZ328/config.c
b/arch/m68knommu/platform/68EZ328/config.c
index d8d56e5de31073b38e73a5477097d0c20567631d..15a14a67c2bf016ffe2569a9a6505a8b37580d82 100644
(file)
--- a/
arch/m68knommu/platform/68EZ328/config.c
+++ b/
arch/m68knommu/platform/68EZ328/config.c
@@
-42,13
+42,13
@@
void m68328_timer_gettod(int *year, int *mon, int *day, int *hour, int *min, int
void m68ez328_reset(void)
{
local_irq_disable();
- asm volatile (
"
- moveal #0x10c00000, %a0;
- moveb #0, 0xFFFFF300;
- moveal 0(%a0), %sp;
- moveal 4(%a0), %a0;
- jmp (%a0);
-
"
);
+ asm volatile (
+ "moveal #0x10c00000, %a0;\n"
+ "moveb #0, 0xFFFFF300;\n"
+ "moveal 0(%a0), %sp;\n"
+ "moveal 4(%a0), %a0;\n"
+ "jmp (%a0);\n"
+ );
}
/***************************************************************************/