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