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>
This commit is contained in:
parent
791a6a69a5
commit
5d657bb340
1 changed files with 2 additions and 0 deletions
|
@ -2799,6 +2799,7 @@ struct cfg80211_ops {
|
||||||
* responds to probe-requests in hardware.
|
* responds to probe-requests in hardware.
|
||||||
* @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
|
* @WIPHY_FLAG_OFFCHAN_TX: Device supports direct off-channel TX.
|
||||||
* @WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL: Device supports remain-on-channel call.
|
* @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_SUPPORTS_5_10_MHZ: Device supports 5 MHz and 10 MHz channels.
|
||||||
* @WIPHY_FLAG_HAS_CHANNEL_SWITCH: Device supports channel switch in
|
* @WIPHY_FLAG_HAS_CHANNEL_SWITCH: Device supports channel switch in
|
||||||
* beaconing mode (AP, IBSS, Mesh, ...).
|
* beaconing mode (AP, IBSS, Mesh, ...).
|
||||||
|
@ -2827,6 +2828,7 @@ enum wiphy_flags {
|
||||||
WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = BIT(21),
|
WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = BIT(21),
|
||||||
WIPHY_FLAG_SUPPORTS_5_10_MHZ = BIT(22),
|
WIPHY_FLAG_SUPPORTS_5_10_MHZ = BIT(22),
|
||||||
WIPHY_FLAG_HAS_CHANNEL_SWITCH = BIT(23),
|
WIPHY_FLAG_HAS_CHANNEL_SWITCH = BIT(23),
|
||||||
|
WIPHY_FLAG_DFS_OFFLOAD = BIT(24),
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue