[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1291225529-1118-3-git-send-email-namhyung@gmail.com>
Date: Thu, 2 Dec 2010 02:45:29 +0900
From: Namhyung Kim <namhyung@...il.com>
To: Greg Kroah-Hartman <gregkh@...e.de>
Cc: linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org,
David Vrabel <david.vrabel@....com>
Subject: [PATCH 3/3] uwb: move i1480_est_id_table under #ifdef MODULE
Since i1480_est_id_table is used only for module auto-loading
move it under #ifdef MODULE to fix following warning:
CC drivers/uwb/i1480/i1480-est.o
drivers/uwb/i1480/i1480-est.c:94: warning: ‘i1480_est_id_table’ defined but not used
Signed-off-by: Namhyung Kim <namhyung@...il.com>
Cc: David Vrabel <david.vrabel@....com>
---
drivers/uwb/i1480/i1480-est.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/uwb/i1480/i1480-est.c b/drivers/uwb/i1480/i1480-est.c
index f2eb4d8..bcbaea2 100644
--- a/drivers/uwb/i1480/i1480-est.c
+++ b/drivers/uwb/i1480/i1480-est.c
@@ -86,6 +86,7 @@ MODULE_AUTHOR("Inaky Perez-Gonzalez <inaky.perez-gonzalez@...el.com>");
MODULE_DESCRIPTION("i1480's Vendor Specific Event Size Tables");
MODULE_LICENSE("GPL");
+#ifdef MODULE
/**
* USB device ID's that we handle
*
@@ -97,3 +98,4 @@ static struct usb_device_id i1480_est_id_table[] = {
{ },
};
MODULE_DEVICE_TABLE(usb, i1480_est_id_table);
+#endif
--
1.7.0.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists