diff options
author | Ron Rindjunsky <ron.rindjunsky@intel.com> | 2008-01-21 12:39:12 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:10:46 -0800 |
commit | 71ebb4aac87e4a1504a155084d658d0a92ac63fb (patch) | |
tree | 61026b697e2d3e32fb49830365b1c4a533b9d151 /net/mac80211/ieee80211_sta.c | |
parent | a8b47ea3c583645977a916ab3e2d323c7504aa7b (diff) | |
download | op-kernel-dev-71ebb4aac87e4a1504a155084d658d0a92ac63fb.zip op-kernel-dev-71ebb4aac87e4a1504a155084d658d0a92ac63fb.tar.gz |
mac80211: fix rx flow sparse errors, make functions static
This patch adds static declarations to functions in the Rx flow in order to
eliminate sparse errors
Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ieee80211_sta.c')
-rw-r--r-- | net/mac80211/ieee80211_sta.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c index e7da1cd..2019b4f 100644 --- a/net/mac80211/ieee80211_sta.c +++ b/net/mac80211/ieee80211_sta.c @@ -1154,8 +1154,8 @@ end_no_lock: sta_info_put(sta); } -void ieee80211_send_delba(struct net_device *dev, const u8 *da, u16 tid, - u16 initiator, u16 reason_code) +static void ieee80211_send_delba(struct net_device *dev, const u8 *da, u16 tid, + u16 initiator, u16 reason_code) { struct ieee80211_local *local = wdev_priv(dev->ieee80211_ptr); struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |