From: Xinming Hu <[email protected]>

Commit "mwifiex: Do not change bss_type in change_virtual_intf"
Keep original bss_type unchanged. bss_num should keep the same
style, in this way. Unique tuple (bss_type, bss_num) will be
able to locate the right priv structure.

Signed-off-by: Xinming Hu <[email protected]>
Signed-off-by: Cathy Luo <[email protected]>
Signed-off-by: Ganapathi Bhat <[email protected]>
---
 drivers/net/wireless/marvell/mwifiex/cfg80211.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/drivers/net/wireless/marvell/mwifiex/cfg80211.c 
b/drivers/net/wireless/marvell/mwifiex/cfg80211.c
index 820475a..58720c9 100644
--- a/drivers/net/wireless/marvell/mwifiex/cfg80211.c
+++ b/drivers/net/wireless/marvell/mwifiex/cfg80211.c
@@ -893,23 +893,15 @@ static int mwifiex_deinit_priv_params(struct 
mwifiex_private *priv)
        switch (type) {
        case NL80211_IFTYPE_STATION:
        case NL80211_IFTYPE_ADHOC:
-               priv->bss_num = mwifiex_get_unused_bss_num(adapter,
-                        MWIFIEX_BSS_TYPE_STA);
                priv->bss_role =  MWIFIEX_BSS_ROLE_STA;
                break;
        case NL80211_IFTYPE_P2P_CLIENT:
-               priv->bss_num = mwifiex_get_unused_bss_num(adapter,
-                        MWIFIEX_BSS_TYPE_P2P);
                priv->bss_role =  MWIFIEX_BSS_ROLE_STA;
                break;
        case NL80211_IFTYPE_P2P_GO:
-               priv->bss_num = mwifiex_get_unused_bss_num(adapter,
-                        MWIFIEX_BSS_TYPE_P2P);
                priv->bss_role =  MWIFIEX_BSS_ROLE_UAP;
                break;
        case NL80211_IFTYPE_AP:
-               priv->bss_num = mwifiex_get_unused_bss_num(adapter,
-                        MWIFIEX_BSS_TYPE_UAP);
                priv->bss_role = MWIFIEX_BSS_ROLE_UAP;
                break;
        default:
-- 
1.9.1

Reply via email to