staging: vt6655: Fix unused function warning
authorGuillaume Clement <gclement@baobob.org>
Tue, 22 Jul 2014 20:08:30 +0000 (22:08 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Jul 2014 22:03:13 +0000 (15:03 -0700)
Sparse reports that MimeThread is not used. Actually, it can be used
if THREAD is defined. By enclosing the MimeThread function into the
same #ifdef as the caller of MimeThread, this fixes the sparse
warnings.

Signed-off-by: Guillaume Clement <gclement@baobob.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/device_main.c

index 52f10cacb4253593c1c95a3508a9bb5edc2d9a16..5eeb19edc6331db10539f7866b1cbe2a3ead20e5 100644 (file)
@@ -98,7 +98,9 @@ MODULE_AUTHOR("VIA Networking Technologies, Inc., <lyndonchen@vntek.com.tw>");
 MODULE_LICENSE("GPL");
 MODULE_DESCRIPTION("VIA Networking Solomon-A/B/G Wireless LAN Adapter Driver");
 
+#ifdef THREAD
 static int mlme_kill;
+#endif
 
 #define DEVICE_PARAM(N, D)
 
@@ -1612,7 +1614,8 @@ void      InitRxManagementQueue(PSDevice  pDevice)
 //PLICE_DEBUG<-
 
 //PLICE_DEBUG ->
-int MlmeThread(
+#ifdef THREAD
+static int MlmeThread(
        void *Context)
 {
        PSDevice        pDevice =  (PSDevice) Context;
@@ -1635,6 +1638,7 @@ int MlmeThread(
 
        return 0;
 }
+#endif
 
 static int  device_open(struct net_device *dev) {
        PSDevice pDevice = (PSDevice)netdev_priv(dev);