diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2014-08-23 18:33:24 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-08 23:17:45 (GMT) |
commit | 6004bb11cf0d35574fdedb236d98672ccf86d9a9 (patch) | |
tree | b0bd0f01c27a4c0e728a685e1e4fb01399197a8f /drivers/tty/serial/vr41xx_siu.c | |
parent | 920314dfd05f40cbe8ad677ba733ff1f8814d93a (diff) | |
download | linux-6004bb11cf0d35574fdedb236d98672ccf86d9a9.tar.xz |
serial: vr41xx_siu: delete double assignment
Delete successive assignments to the same location.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression i;
@@
*i = ...;
i = ...;
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/vr41xx_siu.c')
-rw-r--r-- | drivers/tty/serial/vr41xx_siu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/serial/vr41xx_siu.c b/drivers/tty/serial/vr41xx_siu.c index db0c8a4..d7f9d62 100644 --- a/drivers/tty/serial/vr41xx_siu.c +++ b/drivers/tty/serial/vr41xx_siu.c @@ -847,7 +847,6 @@ void __init vr41xx_siu_early_setup(struct uart_port *port) siu_uart_ports[port->line].type = port->type; siu_uart_ports[port->line].uartclk = SIU_BAUD_BASE * 16; siu_uart_ports[port->line].mapbase = port->mapbase; - siu_uart_ports[port->line].mapbase = port->mapbase; siu_uart_ports[port->line].ops = &siu_uart_ops; } |