Bluetooth: bt3c_cs: Fix coding style -- clean up
Fix for braces {} are not necessary for single statement blocks reported by checkpatch Signed-off-by: Prasanna Karthik <mkarthi3@visteon.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
960ef1d72f
commit
aebceccc18
|
@ -202,9 +202,8 @@ static void bt3c_write_wakeup(struct bt3c_info *info)
|
|||
/* Send frame */
|
||||
len = bt3c_write(iobase, 256, skb->data, skb->len);
|
||||
|
||||
if (len != skb->len) {
|
||||
if (len != skb->len)
|
||||
BT_ERR("Very strange");
|
||||
}
|
||||
|
||||
kfree_skb(skb);
|
||||
|
||||
|
|
Loading…
Reference in New Issue