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


Groups > linux.kernel > #1500483 > unrolled thread

[PATCH 2/2] staging: ks7010: Fixes warning :do not add new typedefs

Started bySabitha George <sabitha.george@gmail.com>
First post2016-10-13 20:10 +0200
Last post2016-10-13 20:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 2/2] staging: ks7010:  Fixes warning :do not add new typedefs Sabitha George <sabitha.george@gmail.com> - 2016-10-13 20:10 +0200

#1500483 — [PATCH 2/2] staging: ks7010: Fixes warning :do not add new typedefs

FromSabitha George <sabitha.george@gmail.com>
Date2016-10-13 20:10 +0200
Subject[PATCH 2/2] staging: ks7010: Fixes warning :do not add new typedefs
Message-ID<srSC6-71Q-9@gated-at.bofh.it>
Fixes checkpatch.pl warning: do not add new typedefs in
ks_wlan_net.c

Signed-off-by: Sabitha George <sabitha.george@gmail.com>
---
 drivers/staging/ks7010/ks_wlan_net.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c
index 84edd3b..7b864c0 100644
--- a/drivers/staging/ks7010/ks_wlan_net.c
+++ b/drivers/staging/ks7010/ks_wlan_net.c
@@ -50,10 +50,10 @@
 /* A few details needed for WEP (Wireless Equivalent Privacy) */
 #define MAX_KEY_SIZE 13	/* 128 (?) bits */
 #define MIN_KEY_SIZE  5	/* 40 bits RC4 - WEP */
-typedef struct wep_key_t {
+struct wep_key {
 	u16 len;
 	u8 key[16];	/* 40-bit and 104-bit keys */
-} wep_key_t;
+};
 
 /* Backward compatibility */
 #ifndef IW_ENCODE_NOKEY
@@ -899,7 +899,7 @@ static int ks_wlan_set_encode(struct net_device *dev,
 	struct ks_wlan_private *priv =
 	    (struct ks_wlan_private *)netdev_priv(dev);
 
-	wep_key_t key;
+	struct wep_key key;
 	int index = (dwrq->flags & IW_ENCODE_INDEX);
 	int current_index = priv->reg.wep_index;
 	int i;
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web