]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
wl12xx: set correct vif type in change_interface callback
authorEliad Peller <eliad@wizery.com>
Sun, 4 Mar 2012 08:55:50 +0000 (10:55 +0200)
committerLuciano Coelho <coelho@ti.com>
Mon, 5 Mar 2012 13:45:25 +0000 (15:45 +0200)
In some cases, the wrong vif type was set in the
change_interface callback (P2P_CLIENT/P2P_GO instead
of STA/AP)

Signed-off-by: Eliad Peller <eliad@wizery.com>
Signed-off-by: Luciano Coelho <coelho@ti.com>
drivers/net/wireless/wl12xx/main.c

index a330b0c0ae619325e6f50fa7d09d21b734bd9fc0..65f91d7bad31b2d28f5137d0dac87545e848c17a 100644 (file)
@@ -2336,7 +2336,7 @@ static int wl12xx_op_change_interface(struct ieee80211_hw *hw,
        set_bit(WL1271_FLAG_VIF_CHANGE_IN_PROGRESS, &wl->flags);
        wl1271_op_remove_interface(hw, vif);
 
-       vif->type = ieee80211_iftype_p2p(new_type, p2p);
+       vif->type = new_type;
        vif->p2p = p2p;
        ret = wl1271_op_add_interface(hw, vif);