Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1559115 > unrolled thread

[PATCH] staging: ks7010: Fix brace style issue in ks_wlan_net.c

Started byDavid Wittman <dwittman@gmail.com>
First post2017-01-15 00:30 +0100
Last post2017-01-15 00:30 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: ks7010: Fix brace style issue in ks_wlan_net.c David Wittman <dwittman@gmail.com> - 2017-01-15 00:30 +0100

#1559115 — [PATCH] staging: ks7010: Fix brace style issue in ks_wlan_net.c

FromDavid Wittman <dwittman@gmail.com>
Date2017-01-15 00:30 +0100
Subject[PATCH] staging: ks7010: Fix brace style issue in ks_wlan_net.c
Message-ID<sZFVL-3E2-3@gated-at.bofh.it>
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>
---
 drivers/staging/ks7010/ks_wlan_net.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c
index e5d04ad..8c55428 100644
--- a/drivers/staging/ks7010/ks_wlan_net.c
+++ b/drivers/staging/ks7010/ks_wlan_net.c
@@ -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,
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web