Commit aebceccc authored by Prasanna Karthik's avatar Prasanna Karthik Committed by Marcel Holtmann

Bluetooth: bt3c_cs: Fix coding style -- clean up

Fix for braces {} are not necessary for single statement blocks
reported by checkpatch
Signed-off-by: default avatarPrasanna Karthik <mkarthi3@visteon.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 960ef1d7
...@@ -202,9 +202,8 @@ static void bt3c_write_wakeup(struct bt3c_info *info) ...@@ -202,9 +202,8 @@ static void bt3c_write_wakeup(struct bt3c_info *info)
/* Send frame */ /* Send frame */
len = bt3c_write(iobase, 256, skb->data, skb->len); len = bt3c_write(iobase, 256, skb->data, skb->len);
if (len != skb->len) { if (len != skb->len)
BT_ERR("Very strange"); BT_ERR("Very strange");
}
kfree_skb(skb); kfree_skb(skb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment