diff options
-rw-r--r-- | include/net/mac80211.h | 3 | ||||
-rw-r--r-- | net/mac80211/util.c | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index eff00e6d105f..bebd89f7f6c3 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -3801,4 +3801,7 @@ int ieee80211_add_srates_ie(struct ieee80211_vif *vif, | |||
3801 | 3801 | ||
3802 | int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, | 3802 | int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, |
3803 | struct sk_buff *skb, bool need_basic); | 3803 | struct sk_buff *skb, bool need_basic); |
3804 | |||
3805 | int ieee80211_ave_rssi(struct ieee80211_vif *vif); | ||
3806 | |||
3804 | #endif /* MAC80211_H */ | 3807 | #endif /* MAC80211_H */ |
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 9d255a2e37ee..89c1e5b9ba94 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c | |||
@@ -1793,3 +1793,11 @@ int ieee80211_add_ext_srates_ie(struct ieee80211_vif *vif, | |||
1793 | } | 1793 | } |
1794 | return 0; | 1794 | return 0; |
1795 | } | 1795 | } |
1796 | |||
1797 | int ieee80211_ave_rssi(struct ieee80211_vif *vif) | ||
1798 | { | ||
1799 | struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif); | ||
1800 | struct ieee80211_if_managed *ifmgd = &sdata->u.mgd; | ||
1801 | |||
1802 | return ifmgd->ave_beacon_signal; | ||
1803 | } | ||