2009-10-02 22:02:37 +00:00
|
|
|
--- a/drivers/net/wireless/ath/regd.c
|
|
|
|
+++ b/drivers/net/wireless/ath/regd.c
|
2014-01-30 13:21:36 +00:00
|
|
|
@@ -341,6 +341,10 @@ ath_reg_apply_beaconing_flags(struct wip
|
2013-01-09 12:45:28 +00:00
|
|
|
struct ieee80211_channel *ch;
|
|
|
|
unsigned int i;
|
2009-10-02 22:02:37 +00:00
|
|
|
|
2013-06-15 20:14:06 +00:00
|
|
|
+#ifdef CPTCFG_ATH_USER_REGD
|
2010-10-19 21:49:42 +00:00
|
|
|
+ return;
|
2009-10-02 22:02:37 +00:00
|
|
|
+#endif
|
2010-10-19 21:49:42 +00:00
|
|
|
+
|
|
|
|
for (band = 0; band < IEEE80211_NUM_BANDS; band++) {
|
|
|
|
if (!wiphy->bands[band])
|
2014-01-30 13:21:36 +00:00
|
|
|
continue;
|
|
|
|
@@ -374,6 +378,10 @@ ath_reg_apply_ir_flags(struct wiphy *wip
|
|
|
|
{
|
|
|
|
struct ieee80211_supported_band *sband;
|
2009-10-02 22:02:37 +00:00
|
|
|
|
2013-06-15 20:14:06 +00:00
|
|
|
+#ifdef CPTCFG_ATH_USER_REGD
|
2010-10-19 21:49:42 +00:00
|
|
|
+ return;
|
|
|
|
+#endif
|
2009-10-02 22:02:37 +00:00
|
|
|
+
|
2010-10-19 21:49:42 +00:00
|
|
|
sband = wiphy->bands[IEEE80211_BAND_2GHZ];
|
2011-11-18 11:27:19 +00:00
|
|
|
if (!sband)
|
|
|
|
return;
|
2014-01-30 13:21:36 +00:00
|
|
|
@@ -402,6 +410,10 @@ static void ath_reg_apply_radar_flags(st
|
2010-10-19 21:49:42 +00:00
|
|
|
struct ieee80211_channel *ch;
|
|
|
|
unsigned int i;
|
|
|
|
|
2013-06-15 20:14:06 +00:00
|
|
|
+#ifdef CPTCFG_ATH_USER_REGD
|
2010-10-19 21:49:42 +00:00
|
|
|
+ return;
|
|
|
|
+#endif
|
2009-10-02 22:02:37 +00:00
|
|
|
+
|
2010-10-19 21:49:42 +00:00
|
|
|
if (!wiphy->bands[IEEE80211_BAND_5GHZ])
|
|
|
|
return;
|
|
|
|
|
2014-10-23 13:33:18 +00:00
|
|
|
@@ -633,6 +645,11 @@ ath_regd_init_wiphy(struct ath_regulator
|
2010-10-19 21:49:42 +00:00
|
|
|
const struct ieee80211_regdomain *regd;
|
|
|
|
|
2014-10-23 13:33:18 +00:00
|
|
|
wiphy->reg_notifier = reg_notifier;
|
|
|
|
+
|
2013-06-15 20:14:06 +00:00
|
|
|
+#ifdef CPTCFG_ATH_USER_REGD
|
2009-10-02 22:02:37 +00:00
|
|
|
+ return 0;
|
2010-10-19 21:49:42 +00:00
|
|
|
+#endif
|
2009-10-02 22:02:37 +00:00
|
|
|
+
|
2014-01-30 13:21:36 +00:00
|
|
|
wiphy->regulatory_flags |= REGULATORY_STRICT_REG |
|
|
|
|
REGULATORY_CUSTOM_REG;
|
2014-10-23 13:33:18 +00:00
|
|
|
|
2013-06-15 20:14:06 +00:00
|
|
|
--- a/drivers/net/wireless/ath/Kconfig
|
|
|
|
+++ b/drivers/net/wireless/ath/Kconfig
|
2015-12-04 22:39:37 +00:00
|
|
|
@@ -23,6 +23,9 @@ config WLAN_VENDOR_ATH
|
2013-06-15 20:14:06 +00:00
|
|
|
|
2015-12-04 22:39:37 +00:00
|
|
|
if WLAN_VENDOR_ATH
|
2013-06-15 20:14:06 +00:00
|
|
|
|
|
|
|
+config ATH_USER_REGD
|
|
|
|
+ bool "Do not enforce EEPROM regulatory restrictions"
|
|
|
|
+
|
|
|
|
config ATH_DEBUG
|
|
|
|
bool "Atheros wireless debugging"
|
|
|
|
---help---
|
2013-06-30 10:44:19 +00:00
|
|
|
--- a/.local-symbols
|
|
|
|
+++ b/.local-symbols
|
2016-01-15 15:03:48 +00:00
|
|
|
@@ -125,6 +125,7 @@ ADM8211=
|
2013-06-30 10:44:19 +00:00
|
|
|
ATH_COMMON=
|
2015-12-04 22:39:37 +00:00
|
|
|
WLAN_VENDOR_ATH=
|
2013-06-30 10:44:19 +00:00
|
|
|
ATH_DEBUG=
|
|
|
|
+ATH_USER_REGD=
|
2014-10-18 17:38:59 +00:00
|
|
|
ATH_TRACEPOINTS=
|
2013-11-12 22:11:33 +00:00
|
|
|
ATH_REG_DYNAMIC_USER_REG_HINTS=
|
|
|
|
ATH_REG_DYNAMIC_USER_CERT_TESTING=
|