diff options
Diffstat (limited to 'drivers/net/wireless/brcm80211/brcmsmac/channel.c')
-rw-r--r-- | drivers/net/wireless/brcm80211/brcmsmac/channel.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/brcm80211/brcmsmac/channel.c b/drivers/net/wireless/brcm80211/brcmsmac/channel.c index 64a48f06d68b..a90b72202ec5 100644 --- a/drivers/net/wireless/brcm80211/brcmsmac/channel.c +++ b/drivers/net/wireless/brcm80211/brcmsmac/channel.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include "stf.h" | 26 | #include "stf.h" |
27 | #include "channel.h" | 27 | #include "channel.h" |
28 | #include "mac80211_if.h" | 28 | #include "mac80211_if.h" |
29 | #include "debug.h" | ||
29 | 30 | ||
30 | /* QDB() macro takes a dB value and converts to a quarter dB value */ | 31 | /* QDB() macro takes a dB value and converts to a quarter dB value */ |
31 | #define QDB(n) ((n) * BRCMS_TXPWR_DB_FACTOR) | 32 | #define QDB(n) ((n) * BRCMS_TXPWR_DB_FACTOR) |
@@ -336,8 +337,6 @@ struct brcms_cm_info *brcms_c_channel_mgr_attach(struct brcms_c_info *wlc) | |||
336 | const char *ccode = sprom->alpha2; | 337 | const char *ccode = sprom->alpha2; |
337 | int ccode_len = sizeof(sprom->alpha2); | 338 | int ccode_len = sizeof(sprom->alpha2); |
338 | 339 | ||
339 | BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit); | ||
340 | |||
341 | wlc_cm = kzalloc(sizeof(struct brcms_cm_info), GFP_ATOMIC); | 340 | wlc_cm = kzalloc(sizeof(struct brcms_cm_info), GFP_ATOMIC); |
342 | if (wlc_cm == NULL) | 341 | if (wlc_cm == NULL) |
343 | return NULL; | 342 | return NULL; |
@@ -615,8 +614,8 @@ brcms_c_valid_chanspec_ext(struct brcms_cm_info *wlc_cm, u16 chspec) | |||
615 | 614 | ||
616 | /* check the chanspec */ | 615 | /* check the chanspec */ |
617 | if (brcms_c_chspec_malformed(chspec)) { | 616 | if (brcms_c_chspec_malformed(chspec)) { |
618 | wiphy_err(wlc->wiphy, "wl%d: malformed chanspec 0x%x\n", | 617 | brcms_err(wlc->hw->d11core, "wl%d: malformed chanspec 0x%x\n", |
619 | wlc->pub->unit, chspec); | 618 | wlc->pub->unit, chspec); |
620 | return false; | 619 | return false; |
621 | } | 620 | } |
622 | 621 | ||
@@ -738,7 +737,8 @@ static int brcms_reg_notifier(struct wiphy *wiphy, | |||
738 | mboolclr(wlc->pub->radio_disabled, WL_RADIO_COUNTRY_DISABLE); | 737 | mboolclr(wlc->pub->radio_disabled, WL_RADIO_COUNTRY_DISABLE); |
739 | } else { | 738 | } else { |
740 | mboolset(wlc->pub->radio_disabled, WL_RADIO_COUNTRY_DISABLE); | 739 | mboolset(wlc->pub->radio_disabled, WL_RADIO_COUNTRY_DISABLE); |
741 | wiphy_err(wlc->wiphy, "wl%d: %s: no valid channel for \"%s\"\n", | 740 | brcms_err(wlc->hw->d11core, |
741 | "wl%d: %s: no valid channel for \"%s\"\n", | ||
742 | wlc->pub->unit, __func__, request->alpha2); | 742 | wlc->pub->unit, __func__, request->alpha2); |
743 | } | 743 | } |
744 | 744 | ||