diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-14 04:48:35 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-14 15:22:49 +0900 |
commit | ab838577aaaeda12242b7f1e2da3f25c9b4cec3a (patch) | |
tree | b1bbaf922d615740557f15ecdf18bfd565264941 /scripts/kconfig/menu.c | |
parent | f8f0d06438e5c810d1e13b5f8c2fed501fe36e9c (diff) | |
download | linux-ab838577aaaeda12242b7f1e2da3f25c9b4cec3a.tar.gz linux-ab838577aaaeda12242b7f1e2da3f25c9b4cec3a.tar.bz2 linux-ab838577aaaeda12242b7f1e2da3f25c9b4cec3a.zip |
kconfig: remove allnoconfig_y option
Now that the only user, CONFIG_EMBEDDED has stopped using this option,
remove it entirely.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/menu.c')
-rw-r--r-- | scripts/kconfig/menu.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index 5dcfc173da41..d50d0de55222 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -219,11 +219,6 @@ void menu_add_option_modules(void) modules_sym = current_entry->sym; } -void menu_add_option_allnoconfig_y(void) -{ - current_entry->sym->flags |= SYMBOL_ALLNOCONFIG_Y; -} - static int menu_validate_number(struct symbol *sym, struct symbol *sym2) { return sym2->type == S_INT || sym2->type == S_HEX || |