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@gmail.com>
Cc: David Vrabel <david.vrabel@csr.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@intel.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
--