]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: wilc1000: linux_wlan_set_bssid: use wilc instead of g_linux_wlan
authorGlen Lee <glen.lee@atmel.com>
Tue, 27 Oct 2015 09:27:44 +0000 (18:27 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 28 Oct 2015 23:08:47 +0000 (08:08 +0900)
This patch uses netdev private data memeber wilc instead of g_linux_wlan.

Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/linux_wlan.c

index 227dedbabe83dda495ab4d9bcc9c9c3fe4276435..8c81de970007fd719dda3d3098c0d9a4f5e5878a 100644 (file)
@@ -405,10 +405,15 @@ int linux_wlan_set_bssid(struct net_device *wilc_netdev, u8 *pBSSID)
 {
        int i = 0;
        int ret = -1;
+       perInterface_wlan_t *nic;
+       struct wilc *wilc;
 
-       for (i = 0; i < g_linux_wlan->vif_num; i++)
-               if (g_linux_wlan->vif[i].ndev == wilc_netdev) {
-                       memcpy(g_linux_wlan->vif[i].bssid, pBSSID, 6);
+       nic = netdev_priv(wilc_netdev);
+       wilc = nic->wilc;
+
+       for (i = 0; i < wilc->vif_num; i++)
+               if (wilc->vif[i].ndev == wilc_netdev) {
+                       memcpy(wilc->vif[i].bssid, pBSSID, 6);
                        ret = 0;
                        break;
                }