Message ID | 1445578124-31486-9-git-send-email-glen.lee@atmel.com (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Kalle Valo |
Headers | show |
diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index af7e844..b8fd4ae 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -404,10 +404,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 *wl; - 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); + wl = nic->wilc; + + for (i = 0; i < wl->vif_num; i++) + if (wl->vif[i].ndev == wilc_netdev) { + memcpy(wl->vif[i].bssid, pBSSID, 6); ret = 0; break; }
This patch use netdev private data memeber wilc instead of g_linux_wlan. Signed-off-by: Glen Lee <glen.lee@atmel.com> --- drivers/staging/wilc1000/linux_wlan.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-)