Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b07c35c1 authored by Amar Singhal's avatar Amar Singhal Committed by Gerrit - the friendly Code Review server
Browse files

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: 1078935
Change-Id: I592722607788dc4e2167c90bb684071cc9fb6986
Signed-off-by: default avatarAmar Singhal <asinghal@codeaurora.org>
parent e9689790
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3249,6 +3249,7 @@ struct cfg80211_ops {
 *	beaconing mode (AP, IBSS, Mesh, ...).
 * @WIPHY_FLAG_HAS_STATIC_WEP: The device supports static WEP key installation
 *	before connection.
 * @WIPHY_FLAG_DFS_OFFLOAD: The driver handles all the DFS related operations.
 */
enum wiphy_flags {
	/* use hole at 0 */
@@ -3275,6 +3276,7 @@ enum wiphy_flags {
	WIPHY_FLAG_SUPPORTS_5_10_MHZ		= BIT(22),
	WIPHY_FLAG_HAS_CHANNEL_SWITCH		= BIT(23),
	WIPHY_FLAG_HAS_STATIC_WEP		= BIT(24),
	WIPHY_FLAG_DFS_OFFLOAD                  = BIT(25)
};

/**