2009-10-02 22:02:37 +00:00
|
|
|
--- a/drivers/net/wireless/ath/regd.c
|
|
|
|
+++ b/drivers/net/wireless/ath/regd.c
|
2013-06-15 20:14:06 +00:00
|
|
|
@@ -196,6 +196,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])
|
2013-06-15 20:14:06 +00:00
|
|
|
@@ -250,6 +254,10 @@ ath_reg_apply_active_scan_flags(struct w
|
2013-01-09 12:45:28 +00:00
|
|
|
struct ieee80211_channel *ch;
|
|
|
|
const struct ieee80211_reg_rule *reg_rule;
|
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;
|
2013-06-15 20:14:06 +00:00
|
|
|
@@ -299,6 +307,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;
|
|
|
|
|
2013-06-15 20:14:06 +00:00
|
|
|
@@ -503,6 +515,10 @@ ath_regd_init_wiphy(struct ath_regulator
|
2010-10-19 21:49:42 +00:00
|
|
|
{
|
|
|
|
const struct ieee80211_regdomain *regd;
|
|
|
|
|
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
|
|
|
+
|
2010-10-19 21:49:42 +00:00
|
|
|
wiphy->reg_notifier = reg_notifier;
|
|
|
|
wiphy->flags |= WIPHY_FLAG_STRICT_REGULATORY;
|
2009-10-02 22:02:37 +00:00
|
|
|
|
2013-06-15 20:14:06 +00:00
|
|
|
--- a/drivers/net/wireless/ath/Kconfig
|
|
|
|
+++ b/drivers/net/wireless/ath/Kconfig
|
|
|
|
@@ -21,6 +21,9 @@ menuconfig ATH_CARDS
|
|
|
|
|
|
|
|
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 10:44:19 +00:00
|
|
|
--- a/.local-symbols
|
|
|
|
+++ b/.local-symbols
|
2013-07-12 07:59:59 +00:00
|
|
|
@@ -123,6 +123,7 @@ RTL8187_LEDS=
|
2013-06-30 10:44:19 +00:00
|
|
|
ATH_COMMON=
|
|
|
|
ATH_CARDS=
|
|
|
|
ATH_DEBUG=
|
|
|
|
+ATH_USER_REGD=
|
|
|
|
ATH5K=
|
|
|
|
ATH5K_DEBUG=
|
|
|
|
ATH5K_TRACER=
|