summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSam Ravnborg <sam@mars.ravnborg.org>2006-03-05 13:48:58 +0100
committerSam Ravnborg <sam@mars.ravnborg.org>2006-03-05 13:48:58 +0100
commit7b75b13cda8bd21e8636ea985f76e1ce5bd1a470 (patch)
treeaa547e0525bdc0cd60560771a9b7c09bf133ba85 /scripts
parentf6ecebd6592ea70e9450ec70efb24220dd961ebc (diff)
downloadop-kernel-dev-7b75b13cda8bd21e8636ea985f76e1ce5bd1a470.zip
op-kernel-dev-7b75b13cda8bd21e8636ea985f76e1ce5bd1a470.tar.gz
kbuild: when warning symbols exported twice now tell user this is the problem
Warning now looks like this: WARNING: vmlinux: 'strcpy' exported twice. Previous export was in vmlinux Which gives much better hint how to fix it. Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mod/modpost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 3648683..e2bf4c9 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -191,7 +191,7 @@ static struct symbol *sym_add_exported(const char *name, struct module *mod)
s = new_symbol(name, mod);
} else {
if (!s->preloaded) {
- warn("%s: duplicate symbol '%s' previous definition "
+ warn("%s: '%s' exported twice. Previous export "
"was in %s%s\n", mod->name, name,
s->module->name,
is_vmlinux(s->module->name) ?"":".ko");
OpenPOWER on IntegriCloud