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

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
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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);