1
0
Fork 0

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>
steinar/wifi_calib_4_9_kernel
Prasanna Karthik 2015-07-06 05:40:16 +00:00 committed by Marcel Holtmann
parent 7feb99e130
commit f104f06c1b
1 changed files with 1 additions and 1 deletions

View File

@ -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);