diff options
author | Peter Senna Tschudin <peter.senna@gmail.com> | 2012-09-07 19:24:42 +0400 |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-09-19 05:26:33 +0400 |
commit | d650ccae2d6f82a7f5dc33aea6c55b4e25692190 (patch) | |
tree | 0d6c04c160dea7dd86b4a3e9de2ed7cab447a306 /drivers/bluetooth/hci_ll.c | |
parent | a20890d079aa3130ca3f4e10da207cab9df4a2bb (diff) | |
download | linux-d650ccae2d6f82a7f5dc33aea6c55b4e25692190.tar.xz |
Bluetooth: hci_ll.c: removes unnecessary semicolon
removes unnecessary semicolon
Found by Coccinelle: http://coccinelle.lip6.fr/
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'drivers/bluetooth/hci_ll.c')
-rw-r--r-- | drivers/bluetooth/hci_ll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/hci_ll.c b/drivers/bluetooth/hci_ll.c index ff6d589c34a5..cfc767938589 100644 --- a/drivers/bluetooth/hci_ll.c +++ b/drivers/bluetooth/hci_ll.c @@ -481,7 +481,7 @@ static int ll_recv(struct hci_uart *hu, void *data, int count) hu->hdev->stat.err_rx++; ptr++; count--; continue; - }; + } ptr++; count--; |