summaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/menu.c
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-03-10 22:45:15 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2024-03-19 02:30:51 +0900
commit4957515b9c3aa3d32a1ee44ab77f0a44f29263dc (patch)
treed2d04026aae26fe5d7918b0bbc39fc9aca350925 /scripts/kconfig/menu.c
parentc33a4315c4095be368fe127db3385b248d38df8f (diff)
downloadlinux-stable-4957515b9c3aa3d32a1ee44ab77f0a44f29263dc.tar.gz
linux-stable-4957515b9c3aa3d32a1ee44ab77f0a44f29263dc.tar.bz2
linux-stable-4957515b9c3aa3d32a1ee44ab77f0a44f29263dc.zip
kconfig: check prompt for choice while parsing
This can be checked on-the-fly. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/menu.c')
-rw-r--r--scripts/kconfig/menu.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
index 840ce642ec43..8498481e6afe 100644
--- a/scripts/kconfig/menu.c
+++ b/scripts/kconfig/menu.c
@@ -561,9 +561,6 @@ void menu_finalize(struct menu *parent)
if (sym->type == S_UNKNOWN)
menu_warn(parent, "config symbol defined without type");
- if (sym_is_choice(sym) && !parent->prompt)
- menu_warn(parent, "choice must have a prompt");
-
/* Check properties connected to this symbol */
sym_check_prop(sym);
sym->flags |= SYMBOL_WARNED;