[PATCH 3/3] uwb: move i1480_est_id_table under #ifdef MODULE

From: Namhyung Kim
Date: Wed Dec 01 2010 - 12:45:48 EST


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@xxxxxxxxx>
Cc: David Vrabel <david.vrabel@xxxxxxx>
---
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@xxxxxxxxx>");
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/