Commit bda658382614198714b27581528f9bfb60c05a71
Committed by
Linus Torvalds
1 parent
0f7cfcc5bf
Exists in
master
and in
4 other branches
[PATCH] m68knommu: fix 68360/config.c asm
Fix 68360/config.c asm to be clean for new gcc versions. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Showing 1 changed file with 7 additions and 7 deletions Side-by-side Diff
arch/m68knommu/platform/68360/config.c
| ... | ... | @@ -141,13 +141,13 @@ |
| 141 | 141 | void BSP_reset (void) |
| 142 | 142 | { |
| 143 | 143 | local_irq_disable(); |
| 144 | - asm volatile (" | |
| 145 | - moveal #_start, %a0; | |
| 146 | - moveb #0, 0xFFFFF300; | |
| 147 | - moveal 0(%a0), %sp; | |
| 148 | - moveal 4(%a0), %a0; | |
| 149 | - jmp (%a0); | |
| 150 | - "); | |
| 144 | + asm volatile ( | |
| 145 | + "moveal #_start, %a0;\n" | |
| 146 | + "moveb #0, 0xFFFFF300;\n" | |
| 147 | + "moveal 0(%a0), %sp;\n" | |
| 148 | + "moveal 4(%a0), %a0;\n" | |
| 149 | + "jmp (%a0);\n" | |
| 150 | + ); | |
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | unsigned char *scc1_hwaddr; |