diff options
author | Glen Lee <glen.lee@atmel.com> | 2015-10-27 09:27:53 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-28 23:11:23 (GMT) |
commit | 07320b6bc3ea5a75b6a0c7a36bd8dddbd746225c (patch) | |
tree | 65378ebf9b000160328675057b74292fd71ec80b | |
parent | 32dd51bca67a511dc7afb5a95ee33a0f9a85f811 (diff) | |
download | linux-07320b6bc3ea5a75b6a0c7a36bd8dddbd746225c.tar.xz |
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 <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wilc1000/linux_wlan.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c index b6244f93..bd9f715 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) { |