Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

sym_find("n") is equivalent to &symbol_no.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+1 -1
+1 -1
scripts/kconfig/parser.y
··· 494 494 if (yynerrs) 495 495 exit(1); 496 496 if (!modules_sym) 497 - modules_sym = sym_find( "n" ); 497 + modules_sym = &symbol_no; 498 498 499 499 if (!menu_has_prompt(&rootmenu)) { 500 500 current_entry = &rootmenu;