aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/ks7010
diff options
context:
space:
mode:
authorGravatar Sabitha George <sabitha.george@gmail.com> 2016-10-13 22:36:23 +0530
committerGravatar Greg Kroah-Hartman <gregkh@linuxfoundation.org> 2016-10-16 10:27:39 +0200
commitacefb6450d74417ed7ba4381fa2ea073a30f9244 (patch)
treeceae17eee9f6c34c70ad9004a5b956cef614a801 /drivers/staging/ks7010
parentstaging: ks7010: Replace __attribute__(aligned(x)) with __aligned(x) (diff)
downloadlinux-acefb6450d74417ed7ba4381fa2ea073a30f9244.tar.gz
linux-acefb6450d74417ed7ba4381fa2ea073a30f9244.tar.bz2
linux-acefb6450d74417ed7ba4381fa2ea073a30f9244.zip
staging: ks7010: Fixes warning :do not add new typedefs
Fixes checkpatch.pl warning: do not add new typedefs in ks_wlan_net.c Signed-off-by: Sabitha George <sabitha.george@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ks7010')
-rw-r--r--drivers/staging/ks7010/ks_wlan_net.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c
index 84edd3b929b0..7b864c02348b 100644
--- a/drivers/staging/ks7010/ks_wlan_net.c
+++ b/drivers/staging/ks7010/ks_wlan_net.c
@@ -50,10 +50,10 @@ static const long frequency_list[] = { 2412, 2417, 2422, 2427, 2432, 2437, 2442,
/* 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;