Commit cc3e4e5e authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: m/nconf: remove dead code to display value of bool choice

Previously, optional bool choices met the following conditions
simultaneously:

 - sym_is_choice(sym)
 - sym_is_changeable(sym)
 - type == S_BOOLEAN

It no longer occurs since 6a121588 ("kconfig: remove 'optional'
property support"). Remove the dead code.
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent e89b4615
...@@ -525,19 +525,12 @@ static void build_conf(struct menu *menu) ...@@ -525,19 +525,12 @@ static void build_conf(struct menu *menu)
val = sym_get_tristate_value(sym); val = sym_get_tristate_value(sym);
if (sym_is_changeable(sym)) { if (sym_is_changeable(sym)) {
switch (type) {
case S_BOOLEAN:
item_make("[%c]", val == no ? ' ' : '*');
break;
case S_TRISTATE:
switch (val) { switch (val) {
case yes: ch = '*'; break; case yes: ch = '*'; break;
case mod: ch = 'M'; break; case mod: ch = 'M'; break;
default: ch = ' '; break; default: ch = ' '; break;
} }
item_make("<%c>", ch); item_make("<%c>", ch);
break;
}
item_set_tag('t'); item_set_tag('t');
item_set_data(menu); item_set_data(menu);
} else { } else {
......
...@@ -826,12 +826,6 @@ static void build_conf(struct menu *menu) ...@@ -826,12 +826,6 @@ static void build_conf(struct menu *menu)
val = sym_get_tristate_value(sym); val = sym_get_tristate_value(sym);
if (sym_is_changeable(sym)) { if (sym_is_changeable(sym)) {
switch (type) {
case S_BOOLEAN:
item_make(menu, 't', "[%c]",
val == no ? ' ' : '*');
break;
case S_TRISTATE:
switch (val) { switch (val) {
case yes: case yes:
ch = '*'; ch = '*';
...@@ -844,8 +838,6 @@ static void build_conf(struct menu *menu) ...@@ -844,8 +838,6 @@ static void build_conf(struct menu *menu)
break; break;
} }
item_make(menu, 't', "<%c>", ch); item_make(menu, 't', "<%c>", ch);
break;
}
} else { } else {
item_make(menu, def_menu ? 't' : ':', " "); item_make(menu, def_menu ? 't' : ':', " ");
} }
......
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