staging: wilc1000: remove function linux_wlan_rxq_task
authorGlen Lee <glen.lee@atmel.com>
Wed, 16 Sep 2015 09:53:23 +0000 (18:53 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 17 Sep 2015 04:43:06 +0000 (21:43 -0700)
linux_wlan_rxq_task is not used in the driver. Just remove it.

Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Tony Cho <tony.cho@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/linux_wlan.c

index 08d75abf6a88812e5e25be2216198a3ec5eb5407..de0477979e627a9a6df0492abc19091f84a31eec 100644 (file)
@@ -587,32 +587,6 @@ int linux_wlan_get_num_conn_ifcs(void)
        return ret_val;
 }
 
-static int linux_wlan_rxq_task(void *vp)
-{
-
-       /* inform wilc1000_wlan_init that RXQ task is started. */
-       up(&g_linux_wlan->rxq_thread_started);
-       while (1) {
-               down(&g_linux_wlan->rxq_event);
-               /* wait_for_completion(&g_linux_wlan->rxq_event); */
-
-               if (g_linux_wlan->close) {
-                       /*Unlock the mutex in the mac_close function to indicate the exiting of the RX thread */
-                       up(&g_linux_wlan->rxq_thread_started);
-
-                       while (!kthread_should_stop())
-                               schedule();
-
-                       PRINT_D(RX_DBG, " RX thread stopped\n");
-                       break;
-               }
-               PRINT_D(RX_DBG, "Calling wlan_handle_rx_que()\n");
-
-               g_linux_wlan->oup.wlan_handle_rx_que();
-       }
-       return 0;
-}
-
 #define USE_TX_BACKOFF_DELAY_IF_NO_BUFFERS
 
 static int linux_wlan_txq_task(void *vp)