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

Commit 2aa0bb3a authored by Kiran Kumar Lokere's avatar Kiran Kumar Lokere Committed by Amar Singhal
Browse files

reg: qcom: call reg notifier during wiphy registration



Call reg notifier for self managed hints during wiphy
registration. Call the notifier with last reg-domain
request.

CRs-Fixed: 2183721
Change-Id: I4fdc0a8fae94f774c4b923fba26a8eec1c96730d
Signed-off-by: default avatarKiran Kumar Lokere <klokere@codeaurora.org>
parent 31e37a68
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -1760,11 +1760,13 @@ static void wiphy_update_regulatory(struct wiphy *wiphy,
	if (ignore_reg_update(wiphy, initiator)) {
		/*
		 * Regulatory updates set by CORE are ignored for custom
		 * regulatory cards. Let us notify the changes to the driver,
		 * regulatory cards and for self managed regulatory.
		 * Let us notify the changes to the driver,
		 * as some drivers used this to restore its orig_* reg domain.
		 */
		if (initiator == NL80211_REGDOM_SET_BY_CORE &&
		    wiphy->regulatory_flags & REGULATORY_CUSTOM_REG)
		if ((initiator == NL80211_REGDOM_SET_BY_CORE &&
		     wiphy->regulatory_flags & REGULATORY_CUSTOM_REG) ||
		    (wiphy->regulatory_flags & REGULATORY_WIPHY_SELF_MANAGED))
			reg_call_notifier(wiphy, lr);
		return;
	}