diff options
| author | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2003-02-03 03:55:41 -0600 |
|---|---|---|
| committer | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2003-02-03 03:55:41 -0600 |
| commit | 03e7dcfb7aea11d2efe92c41cfd7163fa34572ff (patch) | |
| tree | d7c13bea7295258fb47b144ccfb4ba6e099a6b60 /kernel | |
| parent | 44e2665116a3c32d8f89105ff6cc6937b40f858a (diff) | |
kbuild: Assorted fixlets
o Build modules with CONFIG_MODVERSIONS when just saying "make"
o Ignore generated *.ver.c files
o Fix a typo (Sam Ravnborg)
o Fix another typo (Paul Marinceu)
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c index 47ead4a3ddff..5b55c21deeaa 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -1295,7 +1295,7 @@ static struct module *load_module(void *umod, #ifdef CONFIG_MODVERSIONS if ((mod->symbols.num_syms && !crcindex) - || (mod->gpl_symbols.num_syms && !gplcrcindex)) + || (mod->gpl_symbols.num_syms && !gplcrcindex)) { printk(KERN_WARNING "%s: No versions for exported symbols." " Tainting kernel.\n", mod->name); tainted |= TAINT_FORCED_MODULE; |
