summaryrefslogtreecommitdiff
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorAmar Singhal <asinghal@codeaurora.org>2014-01-06 14:55:18 -0800
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-22 11:16:43 -0700
commit5d657bb340dbe261320504a47953b9f1c4fef78d (patch)
treeffade5d4fd3d704658c8052ca01be0df005fa8c5 /include/net/cfg80211.h
parent791a6a69a5b11a2dc8244d0bd7d2d37fabcb4ed3 (diff)
cfg80211: Add new wiphy flag WIPHY_FLAG_DFS_OFFLOAD
Add new flag WIPHY_FLAG_DFS_OFFLOAD to the wiphy structure. When this flag is defined, the driver would handle all the DFS related operations. CRs-Fixed: 630797 Change-Id: I592722607788dc4e2167c90bb684071cc9fb6986 Signed-off-by: Amar Singhal <asinghal@codeaurora.org>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index 2c7bdb81d30c..e683ddbb26f0 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -2799,6 +2799,7 @@ struct cfg80211_ops {
* responds to probe-requests in hardware.
* @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
* @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
+ * @WIPHY_FLAG_DFS_OFFLOAD: The driver handles all the DFS related operations.
* @WIPHY_FLAG_SUPPORTS_5_10_MHZ: Device supports 5 MHz and 10 MHz channels.
* @WIPHY_FLAG_HAS_CHANNEL_SWITCH: Device supports channel switch in
* beaconing mode (AP, IBSS, Mesh, ...).
@@ -2827,6 +2828,7 @@ enum wiphy_flags {
WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = BIT(21),
WIPHY_FLAG_SUPPORTS_5_10_MHZ = BIT(22),
WIPHY_FLAG_HAS_CHANNEL_SWITCH = BIT(23),
+ WIPHY_FLAG_DFS_OFFLOAD = BIT(24),
};
/**