diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-06-18 19:35:22 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-07-16 01:08:37 +0900 |
commit | bd0db4b6ad03abb39708e3c09d9d275973052b6f (patch) | |
tree | ad43a4148ea5037b0d13086fba03756b1a9b4a70 /scripts/kconfig/gconf.c | |
parent | f79dc03fe68c79d388908182e68d702f7f1786bc (diff) | |
download | lwn-bd0db4b6ad03abb39708e3c09d9d275973052b6f.tar.gz lwn-bd0db4b6ad03abb39708e3c09d9d275973052b6f.zip |
kconfig: remove sym_get_choice_value()
sym_get_choice_value(menu->sym) is equivalent to sym_calc_choice(menu).
Convert all call sites of sym_get_choice_value() and then remove it.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/gconf.c')
-rw-r--r-- | scripts/kconfig/gconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 380421a5cfb2..6b50e25133e3 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -1054,7 +1054,7 @@ static gchar **fill_row(struct menu *menu) if (sym_is_choice(sym)) { // parse childs for getting final value struct menu *child; - struct symbol *def_sym = sym_get_choice_value(sym); + struct symbol *def_sym = sym_calc_choice(menu); struct menu *def_menu = NULL; for (child = menu->list; child; child = child->next) { |