summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-08-12 13:49:45 +0200
committerMasahiro Yamada <masahiroy@kernel.org>2024-09-01 13:34:47 +0200
commitdc73a57aeaaabe148c69c16b388771f891a996a2 (patch)
tree9705252339cb26e11b658dcd33b7e722fc0832e5 /scripts/kconfig
parenttinyconfig: remove unnecessary 'is not set' for choice blocks (diff)
downloadlinux-dc73a57aeaaabe148c69c16b388771f891a996a2.tar.xz
linux-dc73a57aeaaabe148c69c16b388771f891a996a2.zip
kconfig: remove dummy assignments to cur_{filename,lineno}
Since commit ca4c74ba306e ("kconfig: remove P_CHOICE property"), menu_finalize() no longer calls menu_add_symbol(). No function references cur_filename or cur_lineno after yyparse(). Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r--scripts/kconfig/parser.y8
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/kconfig/parser.y b/scripts/kconfig/parser.y
index 61900feb4254..e03731184840 100644
--- a/scripts/kconfig/parser.y
+++ b/scripts/kconfig/parser.y
@@ -530,14 +530,6 @@ void conf_parse(const char *name)
yydebug = 1;
yyparse();
- /*
- * FIXME:
- * cur_filename and cur_lineno are used even after yyparse();
- * menu_finalize() calls menu_add_symbol(). This should be fixed.
- */
- cur_filename = "<none>";
- cur_lineno = 0;
-
str_printf(&autoconf_cmd,
"\n"
"$(autoconfig): $(deps_config)\n"