From: Adrian Bunk This patch makes a needlessly global variable static. Signed-off-by: Adrian Bunk Signed-off-by: Andrew Morton --- 25-akpm/arch/x86_64/kernel/early_printk.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86_64/kernel/early_printk.c~i386-x86_64-early_printkc-make-early_serial_base-static arch/x86_64/kernel/early_printk.c --- 25/arch/x86_64/kernel/early_printk.c~i386-x86_64-early_printkc-make-early_serial_base-static Wed Mar 30 13:13:06 2005 +++ 25-akpm/arch/x86_64/kernel/early_printk.c Wed Mar 30 13:13:06 2005 @@ -60,7 +60,7 @@ static struct console early_vga_console /* Serial functions loosely based on a similar package from Klaus P. Gerlicher */ -int early_serial_base = 0x3f8; /* ttyS0 */ +static int early_serial_base = 0x3f8; /* ttyS0 */ #define XMTRDY 0x20 _