提交 8e3bec32 编写于 作者: G Guillaume Clement 提交者: Greg Kroah-Hartman

staging: vt6655: Fix unused function warning

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: NGuillaume Clement <gclement@baobob.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 2b3f41c7
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册