projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b950aa8
)
Bluetooth: hci_serdev: Fixed error space required before open paranethesis
author
Jagdish Tirumala
<t.jag587@gmail.com>
Tue, 11 Sep 2018 15:40:38 +0000
(08:40 -0700)
committer
Marcel Holtmann
<marcel@holtmann.org>
Thu, 27 Sep 2018 10:40:14 +0000
(12:40 +0200)
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>
drivers/bluetooth/hci_serdev.c
patch
|
blob
|
history
diff --git
a/drivers/bluetooth/hci_serdev.c
b/drivers/bluetooth/hci_serdev.c
index a541e6ee085ea358fbefb2faa3d63b93458612c3..c445aa9ac511ed2e5c3a037d6c522ff91e196d12 100644
(file)
--- 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);
}