staging: rtl8187se: Remove unused functions 'rsn_authen_cipher_suite' and 'ext_ieee80...
authorAna Rey <anarey@gmail.com>
Sun, 16 Mar 2014 19:44:25 +0000 (20:44 +0100)
committerPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Mon, 17 Mar 2014 04:57:23 +0000 (21:57 -0700)
Remove unused functions rsn_authen_cipher_suite() and
ext_ieee80211_send_beacon_wq() from ieee80211_softmac.c.

Fix sparse warnings:
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c:27:11: warning: ‘rsn_authen_cipher_suite’ defined but not used [-Wunused-variable]
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c:327:13: warning: ‘ext_ieee80211_send_beacon_wq’ defined but not used [-Wunused-function]

Signed-off-by: Ana Rey <anarey@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
drivers/staging/rtl8187se/ieee80211/ieee80211_softmac.c

index afbc94fd8acfee50e5587d993921b7a781e6258d..dee2bf1ff3e794529ad1f992c50b7d69f160b8a1 100644 (file)
@@ -315,25 +315,6 @@ inline struct sk_buff *ieee80211_probe_req(struct ieee80211_device *ieee)
 
 struct sk_buff *ieee80211_get_beacon_(struct ieee80211_device *ieee);
 
-static void ext_ieee80211_send_beacon_wq(struct ieee80211_device *ieee)
-{
-       struct sk_buff *skb;
-
-       skb = ieee80211_get_beacon_(ieee);
-
-       if (skb){
-               softmac_mgmt_xmit(skb, ieee);
-               ieee->softmac_stats.tx_beacons++;
-               dev_kfree_skb_any(skb);
-       }
-
-       ieee->beacon_timer.expires = jiffies +
-               (MSECS( ieee->current_network.beacon_interval -5));
-
-       if(ieee->beacon_txing)
-               add_timer(&ieee->beacon_timer);
-}
-
 static void ieee80211_send_beacon(struct ieee80211_device *ieee)
 {
        struct sk_buff *skb;
This page took 0.027499 seconds and 5 git commands to generate.