diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2006-06-26 18:18:11 +0200 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-07-09 21:11:09 +0100 |
commit | d608ab9917fbe9926704c07b27df72ac78133870 (patch) | |
tree | 03a4772cab2f40e4cc208eb355aab40bbb2c0ce3 /drivers/serial | |
parent | b862f3b099f3ea672c7438c0b282ce8201d39dfc (diff) | |
download | talos-obmc-linux-d608ab9917fbe9926704c07b27df72ac78133870.tar.gz talos-obmc-linux-d608ab9917fbe9926704c07b27df72ac78133870.zip |
[SERIAL] dz: Fix compilation error
Fix the following compilation error in the dz serial driver that got
introduced with the "kernel console should send CRLF not LFCR" change.
CC drivers/serial/dz.o
drivers/serial/dz.c: In function 'dz_console_putchar':
drivers/serial/dz.c:679: error: 'uport' undeclared (first use in this function)
drivers/serial/dz.c:679: error: (Each undeclared identifier is reported only once
drivers/serial/dz.c:679: error: for each function it appears in.)
Signed-off-by: Martin Michlmayr <tbm@cyrius.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/dz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/dz.c b/drivers/serial/dz.c index d119c8296a78..8a98aae80e22 100644 --- a/drivers/serial/dz.c +++ b/drivers/serial/dz.c @@ -673,7 +673,7 @@ static void dz_reset(struct dz_port *dport) } #ifdef CONFIG_SERIAL_DZ_CONSOLE -static void dz_console_putchar(struct uart_port *port, int ch) +static void dz_console_putchar(struct uart_port *uport, int ch) { struct dz_port *dport = (struct dz_port *)uport; unsigned long flags; |