summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArend van Spriel <arend@broadcom.com>2011-02-10 14:27:44 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2011-02-18 20:55:24 (GMT)
commit77919fd72e96cb75ed1b3fc0921a6b5cef5f8042 (patch)
tree3110657f7c896fd0ff7bdd7e78cb4a2410165fb2
parentcf60191a2d527065348bb315b1d650a086dde94b (diff)
downloadlinux-fsl-qoriq-77919fd72e96cb75ed1b3fc0921a6b5cef5f8042.tar.xz
staging: brcm80211: remove warning introduced by rfkill implementation
During rfkill implementation the content of wlc_radio_upd function was removed for testing purposes only. This ended up in the patch sent out. This commit restores the function content, which was the only function calling static function wlc_radio_enable. This removes the compilation warning observed. Reviewed-by: Brett Rudley <brudley@broadcom.com> Reviewed-by: Roland Vossen <rvossen@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/brcm80211/brcmsmac/wlc_mac80211.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/staging/brcm80211/brcmsmac/wlc_mac80211.c b/drivers/staging/brcm80211/brcmsmac/wlc_mac80211.c
index 4515f17..96e6ce4 100644
--- a/drivers/staging/brcm80211/brcmsmac/wlc_mac80211.c
+++ b/drivers/staging/brcm80211/brcmsmac/wlc_mac80211.c
@@ -2311,6 +2311,11 @@ void wlc_radio_mpc_upd(struct wlc_info *wlc)
*/
static void wlc_radio_upd(struct wlc_info *wlc)
{
+ if (wlc->pub->radio_disabled) {
+ wlc_radio_disable(wlc);
+ } else {
+ wlc_radio_enable(wlc);
+ }
}
/* maintain LED behavior in down state */