[PATCH] Silence 'defined but not used' warning in drivers/ieee1394/raw1394.c

From: Tony Breeds
Date: Thu Apr 24 2008 - 00:29:06 EST


Currently the kernel will issue the following warning:

drivers/ieee1394/raw1394.c:2938: warning: 'raw1394_id_table' defined but not used

Add #ifdef MODULE guards arround the declaration.

Signed-off-by: Tony Breeds <tony@xxxxxxxxxxxxxxxxxx>
---
drivers/ieee1394/raw1394.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/ieee1394/raw1394.c b/drivers/ieee1394/raw1394.c
index 04e96ba..7322fab 100644
--- a/drivers/ieee1394/raw1394.c
+++ b/drivers/ieee1394/raw1394.c
@@ -2931,6 +2931,7 @@ static int raw1394_release(struct inode *inode, struct file *file)
return 0;
}

+#ifdef MODULE
/*** HOTPLUG STUFF **********************************************************/
/*
* Export information about protocols/devices supported by this driver.
@@ -2956,6 +2957,7 @@ static struct ieee1394_device_id raw1394_id_table[] = {
};

MODULE_DEVICE_TABLE(ieee1394, raw1394_id_table);
+#endif /* MODULE */

static struct hpsb_protocol_driver raw1394_driver = {
.name = "raw1394",
--
1.5.5.1


Yours Tony

linux.conf.au http://www.marchsouth.org/
Jan 19 - 24 2009 The Australian Linux Technical Conference!

--
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/