Commit f1b5e520 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] m68k traps.c constraints

Cast is not an lvalue; =r constraint wants an lvalue and really couldn't
care whether it's void * or other pointer type.
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent de290166
...@@ -114,7 +114,7 @@ void __init base_trap_init(void) ...@@ -114,7 +114,7 @@ void __init base_trap_init(void)
if(MACH_IS_SUN3X) { if(MACH_IS_SUN3X) {
extern e_vector *sun3x_prom_vbr; extern e_vector *sun3x_prom_vbr;
__asm__ volatile ("movec %%vbr, %0" : "=r" ((void*)sun3x_prom_vbr)); __asm__ volatile ("movec %%vbr, %0" : "=r" (sun3x_prom_vbr));
} }
/* setup the exception vector table */ /* setup the exception vector table */
......
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