]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: brcm80211: fix for reported log spam problem
authorRoland Vossen <rvossen@broadcom.com>
Wed, 29 Jun 2011 23:48:22 +0000 (16:48 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 5 Aug 2011 04:58:34 +0000 (21:58 -0700)
commit 37c962d195005d009e130e65a9e55960996c3cab upstream.

Every few minutes, this message would appear in syslog:

ieee80211 ph0: wl_ops_bss_info_changed: BSS idle: true (implement)

The message has been deleted, the driver requires no special action on this
particular event (). See: https://bugzilla.kernel.org/show_bug.cgi?id=38162

Reported-by: David Hill <hilld@binarystorm.net>
Signed-off-by: Roland Vossen <rvossen@broadcom.com>
Reviewed-by: Arend van Spriel <arend@broadcom.com>
Reviewed-by: Franky Lin <frankyl@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Stefan Lippers-Hollmann <s.l-h@gmx.de>
drivers/staging/brcm80211/brcmsmac/wl_mac80211.c

index 6c6236c969b707d26189458364cd91f7cf3b9f01..aa0d127427912531a21f54cfcf447c3a2236764a 100644 (file)
@@ -449,11 +449,6 @@ wl_ops_bss_info_changed(struct ieee80211_hw *hw,
                wiphy_err(wiphy, "%s: qos enabled: %s (implement)\n", __func__,
                          info->qos ? "true" : "false");
        }
-       if (changed & BSS_CHANGED_IDLE) {
-               /* Idle changed for this BSS/interface */
-               wiphy_err(wiphy, "%s: BSS idle: %s (implement)\n", __func__,
-                         info->idle ? "true" : "false");
-       }
        return;
 }