From: Vivek Goyal Date: Wed, 2 May 2007 17:27:06 +0000 (+0200) Subject: [PATCH] x86-64: Fix early printk to use standard ISA mapping X-Git-Tag: v2.6.22-rc1~1011^2~190 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=93fd755e47d7b00fa5470199cfb14cbd9ded0284;p=linux-2.6-omap-h63xx.git [PATCH] x86-64: Fix early printk to use standard ISA mapping Signed-off-by: Eric W. Biederman Signed-off-by: Vivek Goyal Signed-off-by: Andi Kleen --- diff --git a/arch/x86_64/kernel/early_printk.c b/arch/x86_64/kernel/early_printk.c index 47b6d90349d..b7aa9abe1c6 100644 --- a/arch/x86_64/kernel/early_printk.c +++ b/arch/x86_64/kernel/early_printk.c @@ -11,11 +11,10 @@ #ifdef __i386__ #include -#define VGABASE (__ISA_IO_base + 0xb8000) #else #include -#define VGABASE ((void __iomem *)0xffffffff800b8000UL) #endif +#define VGABASE (__ISA_IO_base + 0xb8000) static int max_ypos = 25, max_xpos = 80; static int current_ypos = 25, current_xpos = 0;