]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: ks7010: Fix brace style issue in ks_wlan_net.c
authorDavid Wittman <dwittman@gmail.com>
Sat, 14 Jan 2017 23:26:07 +0000 (17:26 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Jan 2017 17:08:57 +0000 (18:08 +0100)
This change fixes a checkpatch error for "that open brace { should be
on the previous line" as well as a related spacing warning.

Signed-off-by: David Wittman <dwittman@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks_wlan_net.c

index e5d04adaeb1a74cdbd2ef1436b5bcf10f4cdfcbb..8c55428b71c707c3567c8186a3e45dc6068577c7 100644 (file)
@@ -3400,8 +3400,9 @@ int ks_wlan_close(struct net_device *dev)
 /* Operational parameters that usually are not changed. */
 /* Time in jiffies before concluding the transmitter is hung. */
 #define TX_TIMEOUT  (3*HZ)
-static const unsigned char dummy_addr[] =
-    { 0x00, 0x0b, 0xe3, 0x00, 0x00, 0x00 };
+static const unsigned char dummy_addr[] = {
+       0x00, 0x0b, 0xe3, 0x00, 0x00, 0x00
+};
 
 static const struct net_device_ops ks_wlan_netdev_ops = {
        .ndo_start_xmit = ks_wlan_start_xmit,