diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-09-24 05:12:47 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-09-24 05:12:47 -0400 |
commit | f993724210744a9b07cf5496808828c4da6ab6df (patch) | |
tree | c9e5b09fafc392546d41c05d30119a6cb3367275 /drivers/serial/clps711x.c | |
parent | 87e807b6c461bbd449496a4c3ab78ab164a4ba97 (diff) |
[SERIAL] Remove unused variable in clps711x.c
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/serial/clps711x.c')
-rw-r--r-- | drivers/serial/clps711x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/clps711x.c b/drivers/serial/clps711x.c index 78c1f36ad9b7..87ef368384fb 100644 --- a/drivers/serial/clps711x.c +++ b/drivers/serial/clps711x.c | |||
@@ -98,7 +98,7 @@ static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id, struct pt_regs *re | |||
98 | { | 98 | { |
99 | struct uart_port *port = dev_id; | 99 | struct uart_port *port = dev_id; |
100 | struct tty_struct *tty = port->info->tty; | 100 | struct tty_struct *tty = port->info->tty; |
101 | unsigned int status, ch, flg, ignored = 0; | 101 | unsigned int status, ch, flg; |
102 | 102 | ||
103 | status = clps_readl(SYSFLG(port)); | 103 | status = clps_readl(SYSFLG(port)); |
104 | while (!(status & SYSFLG_URXFE)) { | 104 | while (!(status & SYSFLG_URXFE)) { |