From: Eliad Peller Date: Sun, 18 Dec 2011 18:25:44 +0000 (+0200) Subject: wl12xx: stop device role on remove_interface X-Git-Tag: v3.3-rc1~182^2~44^2~13^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b890f4c363ebdc9c38d7f1ec91e9ec0976c4fb6a;p=platform%2Fkernel%2Flinux-exynos.git wl12xx: stop device role on remove_interface When removing a sta/ibss role, the device role has to stopped (and disabled) as well. Signed-off-by: Eliad Peller Signed-off-by: Luciano Coelho --- diff --git a/drivers/net/wireless/wl12xx/main.c b/drivers/net/wireless/wl12xx/main.c index 77493cc..0719fc8 100644 --- a/drivers/net/wireless/wl12xx/main.c +++ b/drivers/net/wireless/wl12xx/main.c @@ -2189,7 +2189,11 @@ static void __wl1271_op_remove_interface(struct wl1271 *wl, if (ret < 0) goto deinit; - if (wlvif->bss_type == BSS_TYPE_STA_BSS) { + if (wlvif->bss_type == BSS_TYPE_STA_BSS || + wlvif->bss_type == BSS_TYPE_IBSS) { + if (wl12xx_dev_role_started(wlvif)) + wl12xx_stop_dev(wl, wlvif); + ret = wl12xx_cmd_role_disable(wl, &wlvif->dev_role_id); if (ret < 0) goto deinit;