Skip to content

Commit

Permalink
[PATCH] x86-64: Fix numaq build error
Browse files Browse the repository at this point in the history
  CC      arch/i386/boot/compressed/misc.o
arch/i386/boot/compressed/misc.c:120: error: static declaration of 'xquad_portio' follows non-static declaration
include/asm/io.h:275: error: previous declaration of 'xquad_portio' was here
make[2]: *** [arch/i386/boot/compressed/misc.o] Error 1

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Andi Kleen <ak@suse.de>
  • Loading branch information
Randy Dunlap authored and Andi Kleen committed Dec 7, 2006
1 parent 9ee4016 commit d5d2448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/i386/boot/compressed/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ static int vidport;
static int lines, cols;

#ifdef CONFIG_X86_NUMAQ
static void * xquad_portio = NULL;
void *xquad_portio;
#endif

#include "../../../../lib/inflate.c"
Expand Down

0 comments on commit d5d2448

Please sign in to comment.