From: Andrew Victor Date: Mon, 28 May 2007 09:47:19 +0000 (+0100) Subject: [ARM] 4411/1: KS8695: Another serial driver fix X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=486cab2ba25b469f7a8822e84fd43960a472e3d9;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git [ARM] 4411/1: KS8695: Another serial driver fix Fix a error reported by newer versions of GCC. error: static declaration of 'ks8695_reg' follows non-static declaration Signed-off-by: Andrew Victor Signed-off-by: Russell King --- diff --git a/drivers/serial/serial_ks8695.c b/drivers/serial/serial_ks8695.c index 698763b28ddd..8721afe1ae4f 100644 --- a/drivers/serial/serial_ks8695.c +++ b/drivers/serial/serial_ks8695.c @@ -589,7 +589,7 @@ static int __init ks8695_console_setup(struct console *co, char *options) return uart_set_options(port, co, baud, parity, bits, flow); } -extern struct uart_driver ks8695_reg; +static struct uart_driver ks8695_reg; static struct console ks8695_console = { .name = SERIAL_KS8695_DEVNAME,