From: Jagdish Tirumala Date: Tue, 11 Sep 2018 15:40:38 +0000 (-0700) Subject: Bluetooth: hci_serdev: Fixed error space required before open paranethesis X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ea9ed991c3fc25f56f37fdc537581211426e03df;p=linux.git Bluetooth: hci_serdev: Fixed error space required before open paranethesis Fixed error in space required before paranthesis in drivers/bluetooth/hci_serdev.c Signed-off-by: Jagdish Tirumala Signed-off-by: Marcel Holtmann --- diff --git a/drivers/bluetooth/hci_serdev.c b/drivers/bluetooth/hci_serdev.c index a541e6ee085ea..c445aa9ac511e 100644 --- a/drivers/bluetooth/hci_serdev.c +++ b/drivers/bluetooth/hci_serdev.c @@ -95,7 +95,7 @@ static void hci_uart_write_work(struct work_struct *work) hci_uart_tx_complete(hu, hci_skb_pkt_type(skb)); kfree_skb(skb); } - } while(test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state)); + } while (test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state)); clear_bit(HCI_UART_SENDING, &hu->tx_state); }