Message ID | 1470140454-3899-2-git-send-email-bartosz.markowski@tieto.com (mailing list archive) |
---|---|
State | Accepted |
Commit | d291d8e0592ad5effaaa1af7de95dc9bfecc4f9e |
Delegated to: | Kalle Valo |
Headers | show |
Bartosz Markowski <bartosz.markowski@tieto.com> wrote: > From: Michal Kazior <michal.kazior@tieto.com> > > This will be helpful for drivers that can acquire > alpha2 regulatory codes. > > Signed-off-by: Michal Kazior <michal.kazior@tieto.com> > Signed-off-by: Bartosz Markowski <bartosz.markowski@tieto.com> 2 patches applied to ath-next branch of ath.git, thanks. d291d8e0592a ath: export alpha2 helper 209b2a68de76 ath10k: add platform regulatory domain support
diff --git a/drivers/net/wireless/ath/regd.c b/drivers/net/wireless/ath/regd.c index 7e15ed9ed31f..820bf880ada3 100644 --- a/drivers/net/wireless/ath/regd.c +++ b/drivers/net/wireless/ath/regd.c @@ -449,7 +449,7 @@ static void ath_reg_apply_world_flags(struct wiphy *wiphy, } } -static u16 ath_regd_find_country_by_name(char *alpha2) +u16 ath_regd_find_country_by_name(char *alpha2) { unsigned int i; @@ -460,6 +460,7 @@ static u16 ath_regd_find_country_by_name(char *alpha2) return -1; } +EXPORT_SYMBOL(ath_regd_find_country_by_name); static int __ath_reg_dyn_country(struct wiphy *wiphy, struct ath_regulatory *reg, diff --git a/drivers/net/wireless/ath/regd.h b/drivers/net/wireless/ath/regd.h index 565d3075f06e..5d80be213fac 100644 --- a/drivers/net/wireless/ath/regd.h +++ b/drivers/net/wireless/ath/regd.h @@ -251,6 +251,7 @@ enum CountryCode { bool ath_is_world_regd(struct ath_regulatory *reg); bool ath_is_49ghz_allowed(u16 redomain); +u16 ath_regd_find_country_by_name(char *alpha2); int ath_regd_init(struct ath_regulatory *reg, struct wiphy *wiphy, void (*reg_notifier)(struct wiphy *wiphy, struct regulatory_request *request));