Prev: Dell PowerEdge 4200 scsi, worked in 2.6.18, not in 2.6.26 (LOW PRIORITY help request)
Next: [PATCH 6/6 v2]afs:fsclient.c Fix variable 'bp' set but not used
From: Justin P. Mattock on 19 Jun 2010 16:40 This is a resend from the original, due to the original being wrong, and having whitespace issues. The below patch marks the variable nowarn __unused to satisfy gcc 4.6.0 from giving this warning: CC kernel/module.o kernel/module.c: In function 'add_usage_links': kernel/module.c:1343:6: warning: variable 'nowarn' set but not used after doing this the warning message goes away, but checkpatch.pl gives a warning about externs should be avoided, so am not sure this is the right approach(but could be wrong). Signed-off-by: Justin P. Mattock <justinmattock(a)gmail.com> --- kernel/module.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/module.c b/kernel/module.c index 8c6b428..765bac5 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -1340,7 +1340,7 @@ static void add_usage_links(struct module *mod) { #ifdef CONFIG_MODULE_UNLOAD struct module_use *use; - int nowarn; + int nowarn __attribute__((unused)); mutex_lock(&module_mutex); list_for_each_entry(use, &mod->target_list, target_list) { -- 1.7.1.rc1.21.gf3bd6 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |