Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 472791a9 authored by Glen Lee's avatar Glen Lee Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: linux_wlan_set_bssid: use wilc instead of g_linux_wlan



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

Signed-off-by: default avatarGlen Lee <glen.lee@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 64f2b71b
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -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;
		}