diff options
author | Himangi Saraogi <himangi774@gmail.com> | 2014-03-10 22:35:05 +0400 |
---|---|---|
committer | Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> | 2014-03-11 10:18:08 +0400 |
commit | 88469522bba62f5cf2b78a19dfd70b18ef8b6e50 (patch) | |
tree | 32ad8637eb7cb057d1ab7fbbee295709a2759884 | |
parent | 36af855e8134ba6384c7e3423b302e7a3ebdc2e8 (diff) | |
download | linux-88469522bba62f5cf2b78a19dfd70b18ef8b6e50.tar.xz |
staging:rtl8187se: Remove unused variable
This patch disgards the variable declaration and initialization of
rsn_authen_cipher_suite as it is not used anywhere throughout
the kernel.
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
-rw-r--r-- | drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c index 65cdec4419db..db6b2ad71d09 100644 --- a/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c +++ b/drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c @@ -24,14 +24,6 @@ #include <linux/etherdevice.h> #include "dot11d.h" -static u8 rsn_authen_cipher_suite[16][4] = { - {0x00, 0x0F, 0xAC, 0x00}, //Use group key, //Reserved - {0x00, 0x0F, 0xAC, 0x01}, //WEP-40 //RSNA default - {0x00, 0x0F, 0xAC, 0x02}, //TKIP //NONE //{used just as default} - {0x00, 0x0F, 0xAC, 0x03}, //WRAP-historical - {0x00, 0x0F, 0xAC, 0x04}, //CCMP - {0x00, 0x0F, 0xAC, 0x05}, //WEP-104 -}; short ieee80211_is_54g(const struct ieee80211_network *net) { |