aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorJagdish Tirumala <t.jag587@gmail.com>2018-09-11 08:40:38 -0700
committerMarcel Holtmann <marcel@holtmann.org>2018-09-27 12:40:14 +0200
commitea9ed991c3fc25f56f37fdc537581211426e03df (patch)
treeddf37ccc2e88bdd5d514384c6bf5cb1279438721 /drivers/bluetooth
parentBluetooth: Add definitions and track LE resolve list modification (diff)
downloadlinux-dev-ea9ed991c3fc25f56f37fdc537581211426e03df.tar.xz
linux-dev-ea9ed991c3fc25f56f37fdc537581211426e03df.zip
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 <t.jag587@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/hci_serdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_serdev.c b/drivers/bluetooth/hci_serdev.c
index a541e6ee085e..c445aa9ac511 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);
}