![]() | |||||||||||||
Messages in this thread Patch in this message |
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/ | ||||||||||||
| Last update: 2005-03-22 12:32 [from the cache] ©2003-2008 | |||||||||||||