diff options
author | Joe Perches <joe@perches.com> | 2013-10-08 19:14:21 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-16 16:08:16 -0400 |
commit | fc811472c2167cc885b7af422b074cc9224f3a93 (patch) | |
tree | 04ce583a007acf157a25c240625bf2a054575f41 /drivers/tty/serial/sunsab.c | |
parent | b6951b8a63e8764558c066369a6317bfe15dca55 (diff) |
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/sunsab.c')
-rw-r--r-- | drivers/tty/serial/sunsab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/sunsab.c b/drivers/tty/serial/sunsab.c index 5d6136b2a04a..380fb5355cb2 100644 --- a/drivers/tty/serial/sunsab.c +++ b/drivers/tty/serial/sunsab.c | |||
@@ -894,7 +894,7 @@ static int sunsab_console_setup(struct console *con, char *options) | |||
894 | case B115200: baud = 115200; break; | 894 | case B115200: baud = 115200; break; |
895 | case B230400: baud = 230400; break; | 895 | case B230400: baud = 230400; break; |
896 | case B460800: baud = 460800; break; | 896 | case B460800: baud = 460800; break; |
897 | }; | 897 | } |
898 | 898 | ||
899 | /* | 899 | /* |
900 | * Temporary fix. | 900 | * Temporary fix. |