aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/cfg80211.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 8d7ba0961d3e..26890045dbd6 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -1700,6 +1700,8 @@ struct cfg80211_ops {
1700 * cfg80211_report_obss_beacon(). 1700 * cfg80211_report_obss_beacon().
1701 * @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD: When operating as an AP, the device 1701 * @WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD: When operating as an AP, the device
1702 * responds to probe-requests in hardware. 1702 * responds to probe-requests in hardware.
1703 * @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
1704 * @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
1703 */ 1705 */
1704enum wiphy_flags { 1706enum wiphy_flags {
1705 WIPHY_FLAG_CUSTOM_REGULATORY = BIT(0), 1707 WIPHY_FLAG_CUSTOM_REGULATORY = BIT(0),
@@ -1721,6 +1723,8 @@ enum wiphy_flags {
1721 WIPHY_FLAG_HAVE_AP_SME = BIT(17), 1723 WIPHY_FLAG_HAVE_AP_SME = BIT(17),
1722 WIPHY_FLAG_REPORTS_OBSS = BIT(18), 1724 WIPHY_FLAG_REPORTS_OBSS = BIT(18),
1723 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD = BIT(19), 1725 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD = BIT(19),
1726 WIPHY_FLAG_OFFCHAN_TX = BIT(20),
1727 WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = BIT(21),
1724}; 1728};
1725 1729
1726/** 1730/**