Return-Path: From: "Mutharaju, Prasanna (P.)" To: Marcel Holtmann , Gustavo Padovan , Johan Hedberg CC: "linux-bluetooth@vger.kernel.org" Subject: [PATCH] Bluetooth:bfusb: Coding style fix reported by coccinelle Date: Sun, 5 Jul 2015 09:49:27 +0000 Message-ID: <20150705094912.GA12486@developmental> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 List-ID: From: Prasanna Karthik Removed semicolon at the end of switch case statement Signed-off-by: Prasanna Karthik --- drivers/bluetooth/bfusb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bluetooth/bfusb.c b/drivers/bluetooth/bfusb.c index fcfb72e..a5c4d05 100644 --- a/drivers/bluetooth/bfusb.c +++ b/drivers/bluetooth/bfusb.c @@ -492,7 +492,7 @@ static int bfusb_send_frame(struct hci_dev *hdev, struc= t sk_buff *skb) case HCI_SCODATA_PKT: hdev->stat.sco_tx++; break; - }; + } =20 /* Prepend skb with frame type */ memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1); --=20 1.7.9.5