aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/mac80211.h
diff options
context:
space:
mode:
authorMohamed Abbas <mabbas@linux.intel.com>2008-04-04 19:59:58 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-04-08 16:44:43 -0400
commit84363e6e07f17f8cc580065260907ee3f0520485 (patch)
treef0113ebc756892a55543d8c6511291cad7ec6644 /include/net/mac80211.h
parent380a942b9177dcae1429fdd0f3639f92d9ab139d (diff)
mac80211: notify mac from low level driver (iwlwifi)
Add new API to MAC80211 to allow low level driver to notify MAC with driver status. Signed-off-by: Mohamed Abbas <mabbas@linux.intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com> Acked-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r--include/net/mac80211.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 999f970da6ba..079e7bd86c90 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -74,6 +74,14 @@
74 */ 74 */
75 75
76/** 76/**
77 * enum ieee80211_notification_type - Low level driver notification
78 * @IEEE80211_NOTIFY_RE_ASSOC: start the re-association sequence
79 */
80enum ieee80211_notification_types {
81 IEEE80211_NOTIFY_RE_ASSOC,
82};
83
84/**
77 * struct ieee80211_ht_bss_info - describing BSS's HT characteristics 85 * struct ieee80211_ht_bss_info - describing BSS's HT characteristics
78 * 86 *
79 * This structure describes most essential parameters needed 87 * This structure describes most essential parameters needed
@@ -1678,4 +1686,15 @@ void ieee80211_stop_tx_ba_cb(struct ieee80211_hw *hw, u8 *ra, u8 tid);
1678void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_hw *hw, const u8 *ra, 1686void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_hw *hw, const u8 *ra,
1679 u16 tid); 1687 u16 tid);
1680 1688
1689/**
1690 * ieee80211_notify_mac - low level driver notification
1691 * @hw: pointer as obtained from ieee80211_alloc_hw().
1692 * @notification_types: enum ieee80211_notification_types
1693 *
1694 * This function must be called by low level driver to inform mac80211 of
1695 * low level driver status change or force mac80211 to re-assoc for low
1696 * level driver internal error that require re-assoc.
1697 */
1698void ieee80211_notify_mac(struct ieee80211_hw *hw,
1699 enum ieee80211_notification_types notif_type);
1681#endif /* MAC80211_H */ 1700#endif /* MAC80211_H */