Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Prasanna Karthik and committed by
Marcel Holtmann
aebceccc 960ef1d7

+1 -2
+1 -2
drivers/bluetooth/bt3c_cs.c
··· 202 202 /* Send frame */ 203 203 len = bt3c_write(iobase, 256, skb->data, skb->len); 204 204 205 - if (len != skb->len) { 205 + if (len != skb->len) 206 206 BT_ERR("Very strange"); 207 - } 208 207 209 208 kfree_skb(skb); 210 209