aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/max310x.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-10-08 16:14:21 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-16 13:08:16 -0700
commitfc811472c2167cc885b7af422b074cc9224f3a93 (patch)
tree04ce583a007acf157a25c240625bf2a054575f41 /drivers/tty/serial/max310x.c
parentserial: mrst_max3110: Fix race condition between spi transfers (diff)
downloadlinux-dev-fc811472c2167cc885b7af422b074cc9224f3a93.tar.xz
linux-dev-fc811472c2167cc885b7af422b074cc9224f3a93.zip
tty: Remove unnecessary semicolons
These aren't necessary after switch and while blocks. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/max310x.c')
-rw-r--r--drivers/tty/serial/max310x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/max310x.c b/drivers/tty/serial/max310x.c
index b2e707aa603a..8d71e4047bb3 100644
--- a/drivers/tty/serial/max310x.c
+++ b/drivers/tty/serial/max310x.c
@@ -690,7 +690,7 @@ static void max310x_handle_tx(struct uart_port *port)
max310x_port_write(port, MAX310X_THR_REG,
xmit->buf[xmit->tail]);
xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
- };
+ }
}
if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)