diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-08-04 22:29:37 +0200 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-08-04 22:29:37 +0200 |
commit | f072181e6403b0fe2e2aa800a005497b748fd284 (patch) | |
tree | f5a6ae9440332c15e8d9d500ce1894d0728a4318 /scripts/kconfig | |
parent | 22127f246dc37ed5bea0915f7860002ba6d87da7 (diff) | |
download | linux-3.10-f072181e6403b0fe2e2aa800a005497b748fd284.tar.gz linux-3.10-f072181e6403b0fe2e2aa800a005497b748fd284.tar.bz2 linux-3.10-f072181e6403b0fe2e2aa800a005497b748fd284.zip |
kconfig: drop the ""trying to assign nonexistent symbol" warning
They really stand out now that make *config is less chatty - and
they are generally ignored - so drop them.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Adrian Bunk <bunk@kernel.org>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/confdata.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 07597611cc5..df6a188b993 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -222,10 +222,8 @@ load: continue; if (def == S_DEF_USER) { sym = sym_find(line + 9); - if (!sym) { - conf_warning("trying to assign nonexistent symbol %s", line + 9); + if (!sym) break; - } } else { sym = sym_lookup(line + 9, 0); if (sym->type == S_UNKNOWN) @@ -261,10 +259,8 @@ load: } if (def == S_DEF_USER) { sym = sym_find(line + 7); - if (!sym) { - conf_warning("trying to assign nonexistent symbol %s", line + 7); + if (!sym) break; - } } else { sym = sym_lookup(line + 7, 0); if (sym->type == S_UNKNOWN) |