kconfig: use sym_get_choice_menu() in sym_check_choice_deps()
Choices and their members are associated via the P_CHOICE property. Currently, prop_get_symbol(sym_get_choice_prop()) is used to obtain the choice of the given choice member. Replace it with sym_get_choice_menu(), which retrieves the choice without relying on P_CHOICE. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
d8f8bbcf4b
commit
609fc4099b
@ -1280,9 +1280,13 @@ out:
|
|||||||
if (menu->sym)
|
if (menu->sym)
|
||||||
menu->sym->flags &= ~SYMBOL_CHECK;
|
menu->sym->flags &= ~SYMBOL_CHECK;
|
||||||
|
|
||||||
if (sym2 && sym_is_choice_value(sym2) &&
|
if (sym2) {
|
||||||
prop_get_symbol(sym_get_choice_prop(sym2)) == choice)
|
struct menu *choice_menu2;
|
||||||
sym2 = choice;
|
|
||||||
|
choice_menu2 = sym_get_choice_menu(sym2);
|
||||||
|
if (choice_menu2 == choice_menu)
|
||||||
|
sym2 = choice;
|
||||||
|
}
|
||||||
|
|
||||||
dep_stack_remove();
|
dep_stack_remove();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user