staging:rtl8187se:ieee80211: Fix Sparse Warning for Static Declarations
authorHimangi Saraogi <himangi774@gmail.com>
Wed, 5 Mar 2014 00:50:09 +0000 (06:20 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Mar 2014 23:35:17 +0000 (15:35 -0800)
This patch fixes the following Sparse warnings :

drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c:27:4: warning:
symbol 'rsn_authen_cipher_suite' was not declared. Should it be static?
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c:352:6: warning:
symbol 'ext_ieee80211_send_beacon_wq' was not declared. Should it be
static?

Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c

index c27392d8b6405a98073d3a10f0c0b9bf7dfcd2e6..ab3efe910e9476d43c7041d8783a865b8a21911d 100644 (file)
@@ -24,7 +24,7 @@
 #include <linux/etherdevice.h>
 
 #include "dot11d.h"
-u8 rsn_authen_cipher_suite[16][4] = {
+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}
@@ -349,7 +349,7 @@ inline struct sk_buff *ieee80211_probe_req(struct ieee80211_device *ieee)
 
 struct sk_buff *ieee80211_get_beacon_(struct ieee80211_device *ieee);
 
-void ext_ieee80211_send_beacon_wq(struct ieee80211_device *ieee)
+static void ext_ieee80211_send_beacon_wq(struct ieee80211_device *ieee)
 {
        struct sk_buff *skb;
 
This page took 0.03167 seconds and 5 git commands to generate.