Commit 6ffe4fdf authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: use sym_get_choice_menu() in sym_check_prop()

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: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent bfb57ef0
...@@ -263,11 +263,9 @@ static void sym_check_prop(struct symbol *sym) ...@@ -263,11 +263,9 @@ static void sym_check_prop(struct symbol *sym)
sym->name); sym->name);
} }
if (sym_is_choice(sym)) { if (sym_is_choice(sym)) {
struct property *choice_prop = struct menu *choice = sym_get_choice_menu(sym2);
sym_get_choice_prop(sym2);
if (!choice_prop || if (!choice || choice->sym != sym)
prop_get_symbol(choice_prop) != sym)
prop_warn(prop, prop_warn(prop,
"choice default symbol '%s' is not contained in the choice", "choice default symbol '%s' is not contained in the choice",
sym2->name); sym2->name);
......
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