Commit 73a6afc5 authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: remove unneeded sym_find() call in conf_parse()

sym_find("n") is equivalent to &symbol_no.
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent aa8427fb
......@@ -494,7 +494,7 @@ void conf_parse(const char *name)
if (yynerrs)
exit(1);
if (!modules_sym)
modules_sym = sym_find( "n" );
modules_sym = &symbol_no;
if (!menu_has_prompt(&rootmenu)) {
current_entry = &rootmenu;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment