Commit 69614fc6 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] m68knommu: fix 68VZ328/config.c asm

Fix 68VZ328/config.c asm to be clean for new gcc versions.
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent bda65838
...@@ -141,13 +141,13 @@ static void init_hardware(char *command, int size) ...@@ -141,13 +141,13 @@ static void init_hardware(char *command, int size)
static void m68vz328_reset(void) static void m68vz328_reset(void)
{ {
local_irq_disable(); local_irq_disable();
asm volatile (" asm volatile (
moveal #0x10c00000, %a0; "moveal #0x10c00000, %a0;\n\t"
moveb #0, 0xFFFFF300; "moveb #0, 0xFFFFF300;\n\t"
moveal 0(%a0), %sp; "moveal 0(%a0), %sp;\n\t"
moveal 4(%a0), %a0; "moveal 4(%a0), %a0;\n\t"
jmp (%a0); "jmp (%a0);\n"
"); );
} }
unsigned char *cs8900a_hwaddr; unsigned char *cs8900a_hwaddr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment