This patch changes function argument with net_device dev and use netdev private
data member wilc instead of g_linux_wlan. And there are assignment code with
different value continuously. Take last code.

Signed-off-by: Glen Lee <glen....@atmel.com>
---
 drivers/staging/wilc1000/linux_wlan.c | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/drivers/staging/wilc1000/linux_wlan.c 
b/drivers/staging/wilc1000/linux_wlan.c
index b8fd4ae..f6862d5 100644
--- a/drivers/staging/wilc1000/linux_wlan.c
+++ b/drivers/staging/wilc1000/linux_wlan.c
@@ -1010,31 +1010,34 @@ void linux_to_wlan(wilc_wlan_inp_t *nwi, struct wilc 
*nic)
 #endif
 }
 
-int wlan_initialize_threads(perInterface_wlan_t *nic)
+int wlan_initialize_threads(struct net_device *dev)
 {
-
+       perInterface_wlan_t *nic;
+       struct wilc *wl;
        int ret = 0;
 
+       nic = netdev_priv(dev);
+       wl = nic->wilc;
+
        PRINT_D(INIT_DBG, "Initializing Threads ...\n");
 
        /* create tx task */
        PRINT_D(INIT_DBG, "Creating kthread for transmission\n");
-       g_linux_wlan->txq_thread = kthread_run(linux_wlan_txq_task, (void 
*)g_linux_wlan, "K_TXQ_TASK");
-       if (g_linux_wlan->txq_thread == NULL) {
+       wl->txq_thread = kthread_run(linux_wlan_txq_task, (void *)wl,
+                                    "K_TXQ_TASK");
+       if (!wl->txq_thread) {
                PRINT_ER("couldn't create TXQ thread\n");
                ret = -ENOBUFS;
                goto _fail_2;
        }
        /* wait for TXQ task to start. */
-       down(&g_linux_wlan->txq_thread_started);
+       down(&wl->txq_thread_started);
 
        return 0;
 
 _fail_2:
        /*De-Initialize 2nd thread*/
-       g_linux_wlan->close = 1;
-
-       g_linux_wlan->close = 0;
+       wl->close = 0;
        return ret;
 }
 
@@ -1083,7 +1086,7 @@ int wilc1000_wlan_init(struct net_device *dev, 
perInterface_wlan_t *p_nic)
                }
 #endif
 
-               ret = wlan_initialize_threads(nic);
+               ret = wlan_initialize_threads(dev);
                if (ret < 0) {
                        PRINT_ER("Initializing Threads FAILED\n");
                        ret = -EIO;
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to