Messages in this thread Patch in this message |  | | Subject | [PATCH] Quiet warnings for def of {_,}_MOD_INC_USE_COUNT when CONFIG_MODULE=n | Date | Tue, 7 Jan 2003 15:32:39 +0900 (JST) | From | (Miles Bader) |
| |
Since `try_module_get(module)' is really just `1' when modules are disabled, the compiler bitches. As these definitions are inlines in a header file, this results in a warning for every file that includes modules.h.
diff -ruN -X../cludes linux-2.5.54-moo.orig/include/linux/module.h linux-2.5.54-moo/include/linux/module.h --- linux-2.5.54-moo.orig/include/linux/module.h 2003-01-06 10:51:19.000000000 +0900 +++ linux-2.5.54-moo/include/linux/module.h 2003-01-06 16:30:28.000000000 +0900 @@ -314,7 +314,7 @@ /* * Yes, we ignore the retval here, that's why it's deprecated. */ - try_module_get(module); + (void)try_module_get(module); } static inline void __deprecated __MOD_DEC_USE_COUNT(struct module *module) @@ -350,7 +350,7 @@ local_inc(&module->ref[get_cpu()].count); put_cpu(); #else - try_module_get(module); + (void)try_module_get(module); #endif } #define MOD_INC_USE_COUNT \ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |