aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/mac80211.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r--include/net/mac80211.h31
1 files changed, 5 insertions, 26 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index d861197f83c7..73d81bc6aa75 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -74,14 +74,6 @@
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/**
85 * struct ieee80211_ht_bss_info - describing BSS's HT characteristics 77 * struct ieee80211_ht_bss_info - describing BSS's HT characteristics
86 * 78 *
87 * This structure describes most essential parameters needed 79 * This structure describes most essential parameters needed
@@ -1474,7 +1466,6 @@ void ieee80211_tx_status_irqsafe(struct ieee80211_hw *hw,
1474 * ieee80211_beacon_get - beacon generation function 1466 * ieee80211_beacon_get - beacon generation function
1475 * @hw: pointer obtained from ieee80211_alloc_hw(). 1467 * @hw: pointer obtained from ieee80211_alloc_hw().
1476 * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. 1468 * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf.
1477 * @control: will be filled with information needed to send this beacon.
1478 * 1469 *
1479 * If the beacon frames are generated by the host system (i.e., not in 1470 * If the beacon frames are generated by the host system (i.e., not in
1480 * hardware/firmware), the low-level driver uses this function to receive 1471 * hardware/firmware), the low-level driver uses this function to receive
@@ -1575,7 +1566,6 @@ __le16 ieee80211_generic_frame_duration(struct ieee80211_hw *hw,
1575 * ieee80211_get_buffered_bc - accessing buffered broadcast and multicast frames 1566 * ieee80211_get_buffered_bc - accessing buffered broadcast and multicast frames
1576 * @hw: pointer as obtained from ieee80211_alloc_hw(). 1567 * @hw: pointer as obtained from ieee80211_alloc_hw().
1577 * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf. 1568 * @vif: &struct ieee80211_vif pointer from &struct ieee80211_if_init_conf.
1578 * @control: will be filled with information needed to send returned frame.
1579 * 1569 *
1580 * Function for accessing buffered broadcast and multicast frames. If 1570 * Function for accessing buffered broadcast and multicast frames. If
1581 * hardware/firmware does not implement buffering of broadcast/multicast 1571 * hardware/firmware does not implement buffering of broadcast/multicast
@@ -1623,9 +1613,8 @@ unsigned int ieee80211_hdrlen(__le16 fc);
1623 * 1613 *
1624 * @keyconf: the parameter passed with the set key 1614 * @keyconf: the parameter passed with the set key
1625 * @skb: the skb for which the key is needed 1615 * @skb: the skb for which the key is needed
1626 * @rc4key: a buffer to which the key will be written
1627 * @type: TBD 1616 * @type: TBD
1628 * @key: TBD 1617 * @key: a buffer to which the key will be written
1629 */ 1618 */
1630void ieee80211_get_tkip_key(struct ieee80211_key_conf *keyconf, 1619void ieee80211_get_tkip_key(struct ieee80211_key_conf *keyconf,
1631 struct sk_buff *skb, 1620 struct sk_buff *skb,
@@ -1726,7 +1715,8 @@ void ieee80211_iterate_active_interfaces_atomic(struct ieee80211_hw *hw,
1726 * @hw: pointer as obtained from ieee80211_alloc_hw(). 1715 * @hw: pointer as obtained from ieee80211_alloc_hw().
1727 * @ra: receiver address of the BA session recipient 1716 * @ra: receiver address of the BA session recipient
1728 * @tid: the TID to BA on. 1717 * @tid: the TID to BA on.
1729 * @return: success if addBA request was sent, failure otherwise 1718 *
1719 * Return: success if addBA request was sent, failure otherwise
1730 * 1720 *
1731 * Although mac80211/low level driver/user space application can estimate 1721 * Although mac80211/low level driver/user space application can estimate
1732 * the need to start aggregation on a certain RA/TID, the session level 1722 * the need to start aggregation on a certain RA/TID, the session level
@@ -1764,7 +1754,8 @@ void ieee80211_start_tx_ba_cb_irqsafe(struct ieee80211_hw *hw, const u8 *ra,
1764 * @ra: receiver address of the BA session recipient 1754 * @ra: receiver address of the BA session recipient
1765 * @tid: the TID to stop BA. 1755 * @tid: the TID to stop BA.
1766 * @initiator: if indicates initiator DELBA frame will be sent. 1756 * @initiator: if indicates initiator DELBA frame will be sent.
1767 * @return: error if no sta with matching da found, success otherwise 1757 *
1758 * Return: error if no sta with matching da found, success otherwise
1768 * 1759 *
1769 * Although mac80211/low level driver/user space application can estimate 1760 * Although mac80211/low level driver/user space application can estimate
1770 * the need to stop aggregation on a certain RA/TID, the session level 1761 * the need to stop aggregation on a certain RA/TID, the session level
@@ -1799,18 +1790,6 @@ void ieee80211_stop_tx_ba_cb_irqsafe(struct ieee80211_hw *hw, const u8 *ra,
1799 u16 tid); 1790 u16 tid);
1800 1791
1801/** 1792/**
1802 * ieee80211_notify_mac - low level driver notification
1803 * @hw: pointer as obtained from ieee80211_alloc_hw().
1804 * @notif_type: enum ieee80211_notification_types
1805 *
1806 * This function must be called by low level driver to inform mac80211 of
1807 * low level driver status change or force mac80211 to re-assoc for low
1808 * level driver internal error that require re-assoc.
1809 */
1810void ieee80211_notify_mac(struct ieee80211_hw *hw,
1811 enum ieee80211_notification_types notif_type);
1812
1813/**
1814 * ieee80211_find_sta - find a station 1793 * ieee80211_find_sta - find a station
1815 * 1794 *
1816 * @hw: pointer as obtained from ieee80211_alloc_hw() 1795 * @hw: pointer as obtained from ieee80211_alloc_hw()