From: Prasanna Karthik <mkarthi3@visteon.com>
Date: Thu, 18 Jun 2015 13:51:11 +0000 (+0000)
Subject: Bluetooth: bt3c_cs: Fix coding style -- clean up
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=aebceccc18bf49f8fb208ac4548b7bd402b6662c;p=openwrt%2Fstaging%2Fblogic.git

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>
---

diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c
index 6de97b3871b0..7aab65427d38 100644
--- a/drivers/bluetooth/bt3c_cs.c
+++ b/drivers/bluetooth/bt3c_cs.c
@@ -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);