diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-14 04:48:36 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2021-04-14 15:22:49 +0900 |
commit | 6dd85ff178cd76851e2184b13e545f5a88d1be30 (patch) | |
tree | a7743b360faf3a71d624d76a9564efeb1142da9d /scripts/kconfig/menu.c | |
parent | ab838577aaaeda12242b7f1e2da3f25c9b4cec3a (diff) | |
download | lwn-6dd85ff178cd76851e2184b13e545f5a88d1be30.tar.gz lwn-6dd85ff178cd76851e2184b13e545f5a88d1be30.zip |
kconfig: change "modules" from sub-option to first-level attribute
Now "modules" is the only member of the "option" property.
Remove "option", and move "modules" to the top level property.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/menu.c')
-rw-r--r-- | scripts/kconfig/menu.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index d50d0de55222..8b2108b74821 100644 --- a/scripts/kconfig/menu.c +++ b/scripts/kconfig/menu.c @@ -211,14 +211,6 @@ void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) menu_add_prop(type, expr_alloc_symbol(sym), dep); } -void menu_add_option_modules(void) -{ - if (modules_sym) - zconf_error("symbol '%s' redefines option 'modules' already defined by symbol '%s'", - current_entry->sym->name, modules_sym->name); - modules_sym = current_entry->sym; -} - static int menu_validate_number(struct symbol *sym, struct symbol *sym2) { return sym2->type == S_INT || sym2->type == S_HEX || |