linux-3.0.x for AP-SH4A-0A Board
Revisão | 91769ff844b3753e7643f5c72583261e99ab271a (tree) |
---|---|
Hora | 2011-08-05 13:58:34 |
Autor | Roland Vossen <rvossen@broa...> |
Commiter | Greg Kroah-Hartman |
staging: brcm80211: fix for reported log spam problem
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>
@@ -449,11 +449,6 @@ wl_ops_bss_info_changed(struct ieee80211_hw *hw, | ||
449 | 449 | wiphy_err(wiphy, "%s: qos enabled: %s (implement)\n", __func__, |
450 | 450 | info->qos ? "true" : "false"); |
451 | 451 | } |
452 | - if (changed & BSS_CHANGED_IDLE) { | |
453 | - /* Idle changed for this BSS/interface */ | |
454 | - wiphy_err(wiphy, "%s: BSS idle: %s (implement)\n", __func__, | |
455 | - info->idle ? "true" : "false"); | |
456 | - } | |
457 | 452 | return; |
458 | 453 | } |
459 | 454 |