[PATCH 09/28] staging: wilc1000: linux_wlan_set_bssid: use wilc instead of g_linux_wlan

Glen Lee glen.lee at atmel.com
Fri Oct 23 05:28:25 UTC 2015


This patch use netdev private data memeber wilc instead of g_linux_wlan.

Signed-off-by: Glen Lee <glen.lee at atmel.com>
---
 drivers/staging/wilc1000/linux_wlan.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

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;
 		}
-- 
1.9.1



More information about the devel mailing list