Bluetooth: dtl1_cs: Fix coding style -- clean up
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
045a0fa0c5
commit
fac5e5b912
|
@ -182,9 +182,9 @@ static void dtl1_control(struct dtl1_info *info, struct sk_buff *skb)
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
printk(KERN_INFO "Bluetooth: Nokia control data =");
|
printk(KERN_INFO "Bluetooth: Nokia control data =");
|
||||||
for (i = 0; i < skb->len; i++) {
|
for (i = 0; i < skb->len; i++)
|
||||||
printk(" %02x", skb->data[i]);
|
printk(" %02x", skb->data[i]);
|
||||||
}
|
|
||||||
printk("\n");
|
printk("\n");
|
||||||
|
|
||||||
/* transition to active state */
|
/* transition to active state */
|
||||||
|
|
Loading…
Reference in New Issue