diff options
author | Prasanna Karthik <mkarthi3@visteon.com> | 2015-07-06 05:40:16 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-07-23 17:10:50 +0200 |
commit | f104f06c1b0c93a7c087609e6ab0005e359afab9 (patch) | |
tree | 8e94693a7398f7575cdfba75e594b4509e282b4c | |
parent | 7feb99e1308204e4d849dada3443bc410ce5026b (diff) | |
download | op-kernel-dev-f104f06c1b0c93a7c087609e6ab0005e359afab9.zip op-kernel-dev-f104f06c1b0c93a7c087609e6ab0005e359afab9.tar.gz |
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>
-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 7aab654..a00bb82 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); |