diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-02 16:58:05 +0100 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-19 10:20:40 +0100 |
commit | 56e634b06fd554b819ac9c45fc77a41500861ced (patch) | |
tree | da7da38591efbae297cd7eb9baa6d279abbf3256 /scripts/kconfig/lkc_proto.h | |
parent | kconfig: write Kconfig files to autoconf.cmd in order (diff) | |
download | linux-56e634b06fd554b819ac9c45fc77a41500861ced.tar.xz linux-56e634b06fd554b819ac9c45fc77a41500861ced.zip |
kconfig: call env_write_dep() right after yyparse()
This allows preprocess.c to free up all of its resources when the parse
stage is finished. It also ensures conf_write_autoconf_cmd() produces
consistent results even if called multiple times for any reason.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/lkc_proto.h')
-rw-r--r-- | scripts/kconfig/lkc_proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/lkc_proto.h b/scripts/kconfig/lkc_proto.h index a4ae5e9eadad..85491d74a094 100644 --- a/scripts/kconfig/lkc_proto.h +++ b/scripts/kconfig/lkc_proto.h @@ -46,7 +46,7 @@ enum variable_flavor { VAR_RECURSIVE, VAR_APPEND, }; -void env_write_dep(FILE *f, const char *auto_conf_name); +void env_write_dep(struct gstr *gs); void variable_add(const char *name, const char *value, enum variable_flavor flavor); void variable_all_del(void); |