diff options
author | Prasanna Karthik <mkarthi3@visteon.com> | 2015-07-06 08:40:16 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-07-23 18:10:50 +0300 |
commit | f104f06c1b0c93a7c087609e6ab0005e359afab9 (patch) | |
tree | 8e94693a7398f7575cdfba75e594b4509e282b4c /drivers/bluetooth | |
parent | 7feb99e1308204e4d849dada3443bc410ce5026b (diff) | |
download | linux-f104f06c1b0c93a7c087609e6ab0005e359afab9.tar.xz |
Bluetooth: bt3c_cs: Fix coding style
Remove semicolon in switch statement, reported by coccinelle
Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index 7aab65427d38..a00bb82eb7c6 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c @@ -427,7 +427,7 @@ static int bt3c_hci_send_frame(struct hci_dev *hdev, struct sk_buff *skb) case HCI_SCODATA_PKT: hdev->stat.sco_tx++; break; - }; + } /* Prepend skb with frame type */ memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1); |