diff options
author | Eliad Peller <eliad@wizery.com> | 2011-06-06 05:59:29 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-10 14:26:50 -0400 |
commit | 1d34d108e07680e2c07847d5e69a334cb4f96ab3 (patch) | |
tree | 67c36ad1c6c3250b543c8b68c57ac41e90c1e5f3 /include/net/mac80211.h | |
parent | c48b1f729a75880d0895f0b23efaf551ee800a35 (diff) |
mac80211: add ieee80211_get_operstate() function
Add ieee80211_get_operstate() function to get the operstate
of the netdevice.
This is needed for drivers that need to know when the interface
is IF_OPER_UP (e.g. wl12xx), and block notifiers can't be used
(e.g. because the interface is already IF_OPER_UP, like after
resuming from suspend)
Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 3b31ec95dd8e..e33fe795a3a4 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -2920,6 +2920,16 @@ void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif, | |||
2920 | gfp_t gfp); | 2920 | gfp_t gfp); |
2921 | 2921 | ||
2922 | /** | 2922 | /** |
2923 | * ieee80211_get_operstate - get the operstate of the vif | ||
2924 | * | ||
2925 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. | ||
2926 | * | ||
2927 | * The driver might need to know the operstate of the net_device | ||
2928 | * (specifically, whether the link is IF_OPER_UP after resume) | ||
2929 | */ | ||
2930 | unsigned char ieee80211_get_operstate(struct ieee80211_vif *vif); | ||
2931 | |||
2932 | /** | ||
2923 | * ieee80211_chswitch_done - Complete channel switch process | 2933 | * ieee80211_chswitch_done - Complete channel switch process |
2924 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. | 2934 | * @vif: &struct ieee80211_vif pointer from the add_interface callback. |
2925 | * @success: make the channel switch successful or not | 2935 | * @success: make the channel switch successful or not |