Skip to content

Commit

Permalink
staging: brcm80211: cfg80211 up/down routines in brcmfmac driver are …
Browse files Browse the repository at this point in the history
…fixed

'__wl_cfg80211_up' & '__wl_cfg80211_down' routines are updated to correctly
set the 'wl->status' variable.

Cc: devel@linuxdriverproject.org
Cc: linux-wireless@vger.kernel.org
Reviewed-by: Franky (Zhenhui) Lin <frankyl@broadcom.com>
Reviewed-by: Brett Rudley <brudley@broadcom.com>
Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Sukesh Srikakula authored and Greg Kroah-Hartman committed May 17, 2011
1 parent 1f3b008 commit 65dd489
Showing 1 changed file with 8 additions and 19 deletions.
27 changes: 8 additions & 19 deletions drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -3391,7 +3391,6 @@ s32 wl_cfg80211_attach(struct net_device *ndev, void *data)
goto cfg80211_attach_out;
}
wl_set_drvdata(wl_cfg80211_dev, ci);
set_bit(WL_STATUS_READY, &wl->status);

return err;

Expand Down Expand Up @@ -4021,48 +4020,38 @@ static s32 __wl_cfg80211_up(struct wl_priv *wl)
{
s32 err = 0;

set_bit(WL_STATUS_READY, &wl->status);

wl_debugfs_add_netdev_params(wl);

err = wl_config_dongle(wl, false);
if (unlikely(err))
return err;

wl_invoke_iscan(wl);
set_bit(WL_STATUS_READY, &wl->status);

return err;
}

static s32 __wl_cfg80211_down(struct wl_priv *wl)
{
s32 err = 0;

/* Check if cfg80211 interface is already down */
if (!test_bit(WL_STATUS_READY, &wl->status))
return err; /* it is even not ready */

set_bit(WL_STATUS_SCAN_ABORTING, &wl->status);
wl_term_iscan(wl);
if (wl->scan_request) {
cfg80211_scan_done(wl->scan_request, true); /* true
means abort */
/* wl_set_mpc(wl_to_ndev(wl), 1); */ /* BUG
* this operation cannot help
* but here because sdio
* is already down through
* rmmod process.
* Need to figure out how to
* address this issue
*/
cfg80211_scan_done(wl->scan_request, true);
/* May need to perform this to cover rmmod */
/* wl_set_mpc(wl_to_ndev(wl), 1); */
wl->scan_request = NULL;
}
clear_bit(WL_STATUS_READY, &wl->status);
clear_bit(WL_STATUS_SCANNING, &wl->status);
clear_bit(WL_STATUS_SCAN_ABORTING, &wl->status);
clear_bit(WL_STATUS_CONNECTING, &wl->status);
clear_bit(WL_STATUS_CONNECTED, &wl->status);

wl_debugfs_remove_netdev(wl);

return err;
return 0;
}

s32 wl_cfg80211_up(void)
Expand Down

0 comments on commit 65dd489

Please sign in to comment.