aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorSimon Wunderlich <simon.wunderlich@s2003.tu-chemnitz.de>2011-11-18 08:20:43 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-11-28 14:36:21 -0500
commit1d9d9213d526f2f4ef9a3aa198a29a0b1a670fa1 (patch)
tree34eadd9e3544cbb01c6768dee820d5430db10edc /include/net/cfg80211.h
parent6fd67e937ece538e0ab766df96a9895e6fd622df (diff)
wireless: Add NoAck per tid support
This patch contains the configuration changes in nl80211/cfg80211. Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> Signed-off-by: Mathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index d5e18913f293..38ce452da20f 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1465,6 +1465,8 @@ struct cfg80211_gtk_rekey_data {
1465 * 1465 *
1466 * @probe_client: probe an associated client, must return a cookie that it 1466 * @probe_client: probe an associated client, must return a cookie that it
1467 * later passes to cfg80211_probe_status(). 1467 * later passes to cfg80211_probe_status().
1468 *
1469 * @set_noack_map: Set the NoAck Map for the TIDs.
1468 */ 1470 */
1469struct cfg80211_ops { 1471struct cfg80211_ops {
1470 int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow); 1472 int (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
@@ -1658,6 +1660,10 @@ struct cfg80211_ops {
1658 int (*probe_client)(struct wiphy *wiphy, struct net_device *dev, 1660 int (*probe_client)(struct wiphy *wiphy, struct net_device *dev,
1659 const u8 *peer, u64 *cookie); 1661 const u8 *peer, u64 *cookie);
1660 1662
1663 int (*set_noack_map)(struct wiphy *wiphy,
1664 struct net_device *dev,
1665 u16 noack_map);
1666
1661 struct ieee80211_channel *(*get_channel)(struct wiphy *wiphy); 1667 struct ieee80211_channel *(*get_channel)(struct wiphy *wiphy);
1662}; 1668};
1663 1669