diff options
Diffstat (limited to 'scripts/kconfig/menu.c')
-rw-r--r-- | scripts/kconfig/menu.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index fdad17367f61..606ceb9e746e 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c | |||
@@ -203,12 +203,9 @@ void sym_check_prop(struct symbol *sym) | |||
203 | prop_warn(prop, | 203 | prop_warn(prop, |
204 | "config symbol '%s' uses select, but is " | 204 | "config symbol '%s' uses select, but is " |
205 | "not boolean or tristate", sym->name); | 205 | "not boolean or tristate", sym->name); |
206 | else if (sym2->type == S_UNKNOWN) | 206 | else if (sym2->type != S_UNKNOWN && |
207 | prop_warn(prop, | 207 | sym2->type != S_BOOLEAN && |
208 | "'select' used by config symbol '%s' " | 208 | sym2->type != S_TRISTATE) |
209 | "refers to undefined symbol '%s'", | ||
210 | sym->name, sym2->name); | ||
211 | else if (sym2->type != S_BOOLEAN && sym2->type != S_TRISTATE) | ||
212 | prop_warn(prop, | 209 | prop_warn(prop, |
213 | "'%s' has wrong type. 'select' only " | 210 | "'%s' has wrong type. 'select' only " |
214 | "accept arguments of boolean and " | 211 | "accept arguments of boolean and " |