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

Commit 7ace5b94 authored by Kyle Yan's avatar Kyle Yan Committed by Gerrit - the friendly Code Review server
Browse files

Merge "cfg80211: Add new wiphy flag WIPHY_FLAG_DFS_OFFLOAD" into msm-4.8

parents 5044bbd0 aea474ed
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3030,6 +3030,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 */
@@ -3056,6 +3057,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)
};

/**