X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=blobdiff_plain;f=config%2Fsymbol.c;h=b101ef3c377a6b98d76e8d93a3c5be1c45d8fb7f;hp=8d38b700b314141671302f828e6b70df4e03aa5d;hb=f82e10266427f3183c67f2264bd7555066c4e567;hpb=2391e7e514785584c32defb9a15d82c1dab837fa diff --git a/config/symbol.c b/config/symbol.c index 8d38b70..b101ef3 100644 --- a/config/symbol.c +++ b/config/symbol.c @@ -401,8 +401,7 @@ void sym_calc_value(struct symbol *sym) sym_warn_unmet_dep(sym); newval.tri = EXPR_OR(newval.tri, sym->rev_dep.tri); } - if (newval.tri == mod && - (sym_get_type(sym) == S_BOOLEAN || sym->implied.tri == yes)) + if (newval.tri == mod && sym_get_type(sym) == S_BOOLEAN) newval.tri = yes; break; case S_STRING: @@ -484,8 +483,6 @@ bool sym_tristate_within_range(struct symbol *sym, tristate val) return false; if (sym->visible <= sym->rev_dep.tri) return false; - if (sym->implied.tri == yes && val == mod) - return false; if (sym_is_choice_value(sym) && sym->visible == yes) return val == yes; return val >= sym->rev_dep.tri && val <= sym->visible;