OSDN Git Service

staging: dgnc: remove parenthesis around the CONST |
authorDaeseok Youn <daeseok.youn@gmail.com>
Mon, 4 Apr 2016 09:52:03 +0000 (18:52 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Apr 2016 00:46:00 +0000 (17:46 -0700)
remove parenthesis around the CONST | CONST.

Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgnc/dgnc_cls.c

index 5e46ac8..46c050c 100644 (file)
@@ -1168,7 +1168,7 @@ static void cls_uart_init(struct channel_t *ch)
        /* Clear out UART and FIFO */
        readb(&ch->ch_cls_uart->txrx);
 
-       writeb((UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT),
+       writeb(UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
               &ch->ch_cls_uart->isr_fcr);
        udelay(10);