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/bfin_uart.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/bfin_uart.c')
-rw-r--r-- | drivers/tty/serial/bfin_uart.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/bfin_uart.c b/drivers/tty/serial/bfin_uart.c index 8f9b3495ef5d..869ceba2ec57 100644 --- a/drivers/tty/serial/bfin_uart.c +++ b/drivers/tty/serial/bfin_uart.c | |||
@@ -680,7 +680,7 @@ static int bfin_serial_startup(struct uart_port *port) | |||
680 | default: | 680 | default: |
681 | uart_dma_ch_rx = uart_dma_ch_tx = 0; | 681 | uart_dma_ch_rx = uart_dma_ch_tx = 0; |
682 | break; | 682 | break; |
683 | }; | 683 | } |
684 | 684 | ||
685 | if (uart_dma_ch_rx && | 685 | if (uart_dma_ch_rx && |
686 | request_dma(uart_dma_ch_rx, "BFIN_UART_RX") < 0) { | 686 | request_dma(uart_dma_ch_rx, "BFIN_UART_RX") < 0) { |
@@ -765,7 +765,7 @@ static void bfin_serial_shutdown(struct uart_port *port) | |||
765 | break; | 765 | break; |
766 | default: | 766 | default: |
767 | break; | 767 | break; |
768 | }; | 768 | } |
769 | #endif | 769 | #endif |
770 | free_irq(uart->rx_irq, uart); | 770 | free_irq(uart->rx_irq, uart); |
771 | free_irq(uart->tx_irq, uart); | 771 | free_irq(uart->tx_irq, uart); |