From 07320b6bc3ea5a75b6a0c7a36bd8dddbd746225c Mon Sep 17 00:00:00 2001 From: Glen Lee Date: Tue, 27 Oct 2015 18:27:53 +0900 Subject: [PATCH] staging: wilc1000: mac_ioctl: use private data instead of g_linux_wlan Use netdev private data member wilc instead of g_linux_wlan. Signed-off-by: Glen Lee Signed-off-by: Greg Kroah-Hartman --- drivers/staging/wilc1000/linux_wlan.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index b6244f93f8f5..bd9f71584163 100644 --- a/drivers/staging/wilc1000/linux_wlan.c +++ b/drivers/staging/wilc1000/linux_wlan.c @@ -1496,11 +1496,13 @@ int mac_ioctl(struct net_device *ndev, struct ifreq *req, int cmd) perInterface_wlan_t *nic; struct wilc_priv *priv; s32 s32Error = 0; + struct wilc *wilc; /* struct iwreq *wrq = (struct iwreq *) req; // tony moved to case SIOCSIWPRIV */ nic = netdev_priv(ndev); + wilc = nic->wilc; - if (!g_linux_wlan->initialized) + if (!wilc->initialized) return 0; switch (cmd) { -- 2.39.5