Explorar el Código

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>
Prasanna Karthik hace 10 años
padre
commit
fac5e5b912
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      drivers/bluetooth/dtl1_cs.c

+ 2 - 2
drivers/bluetooth/dtl1_cs.c

@@ -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 */