aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2005-10-01 22:56:34 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2005-10-01 22:56:34 +0100
commit9f4426dde2be352aabc326539eccc726cea2d98c (patch)
treea36e6d4f5b808e74c3701572168a85e7b6403a45 /drivers
parent[PATCH] r8169: tone down the r8169 driver (diff)
downloadlinux-dev-9f4426dde2be352aabc326539eccc726cea2d98c.tar.xz
linux-dev-9f4426dde2be352aabc326539eccc726cea2d98c.zip
[ARM] 2944/1: GCC 4 mx1ads serial driver compile fix
Patch from Vincent Sanders When building the mx1ads ARM platforms the serial driver fails to compile with GCC 4.01 due to extern/static ambiguity. Signed-off-by: Vincent Sanders <vince@arm.linux.org.uk> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/serial/imx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/imx.c b/drivers/serial/imx.c
index 4c985e6b3784..4e1e80adaf11 100644
--- a/drivers/serial/imx.c
+++ b/drivers/serial/imx.c
@@ -860,7 +860,7 @@ imx_console_setup(struct console *co, char *options)
return uart_set_options(&sport->port, co, baud, parity, bits, flow);
}
-extern struct uart_driver imx_reg;
+static struct uart_driver imx_reg;
static struct console imx_console = {
.name = "ttySMX",
.write = imx_console_write,