aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/menu.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-20 00:25:45 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-20 00:25:45 -0400
commite8b8c977734193adedf2b0f607d6252c78e86394 (patch)
tree44a0fe976a77fa0aa605d7d072923e57b4ba297c /scripts/kconfig/menu.c
parentc00046c279a2521075250fad682ca0acc10d4fd7 (diff)
Revert "kconfig: tristate choices with mixed tristate and boolean values"
This reverts commit a5bf3d891a6a0fb5aa122792d965e3774108b923. David Brownell notes that this causes a regression visible in the drivers/usb/gadget Kconfig file: "That Kconfig hasn't changed (other than adding new drivers), and it's worked that way for several years now ... so the issue seems to be changes in menuconfig/kconfig/etc semantics. The issue is that when USB_GADGET=m, it's no longer possible to configure peripheral controller drivers as modules ... the controller drivers can now only be configured for static linkage. It should be making a choice of one of the controller drivers which could work on the target system, and allow that driver to be linked either as a module (ok iff USB_GADGET=m) or statically." Reverting this commit resolves the problem, and also fixes a second problem that David noticed: various dependent options couldn't be enabled. Tested-and-reported-by: David Brownell <david-b@pacbell.net> Cc: Randy Dunlap <rdunlap@xenotime.net> Cc: Jan Beulich <jbeulich@novell.com>, Cc: Andrew Morton <akpm@linux-foundation.org>, Cc: Sam Ravnborg <sam@ravnborg.org>, Cc: Roman Zippel <zippel@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/kconfig/menu.c')
-rw-r--r--scripts/kconfig/menu.c35
1 files changed, 9 insertions, 26 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
index 7bfa181d6ed6..f9d0d91a3fe4 100644
--- a/scripts/kconfig/menu.c
+++ b/scripts/kconfig/menu.c
@@ -235,23 +235,16 @@ void menu_finalize(struct menu *parent)
235 sym = parent->sym; 235 sym = parent->sym;
236 if (parent->list) { 236 if (parent->list) {
237 if (sym && sym_is_choice(sym)) { 237 if (sym && sym_is_choice(sym)) {
238 /* find out choice type */ 238 /* find the first choice value and find out choice type */
239 enum symbol_type type = S_UNKNOWN;
240
241 for (menu = parent->list; menu; menu = menu->next) { 239 for (menu = parent->list; menu; menu = menu->next) {
242 if (menu->sym && menu->sym->type != S_UNKNOWN) { 240 if (menu->sym) {
243 if (type == S_UNKNOWN) 241 current_entry = parent;
244 type = menu->sym->type; 242 menu_set_type(menu->sym->type);
245 if (type != S_BOOLEAN) 243 current_entry = menu;
246 break; 244 menu_set_type(sym->type);
247 if (menu->sym->type == S_TRISTATE) { 245 break;
248 type = S_TRISTATE;
249 break;
250 }
251 } 246 }
252 } 247 }
253 current_entry = parent;
254 menu_set_type(type);
255 parentdep = expr_alloc_symbol(sym); 248 parentdep = expr_alloc_symbol(sym);
256 } else if (parent->prompt) 249 } else if (parent->prompt)
257 parentdep = parent->prompt->visible.expr; 250 parentdep = parent->prompt->visible.expr;
@@ -260,16 +253,7 @@ void menu_finalize(struct menu *parent)
260 253
261 for (menu = parent->list; menu; menu = menu->next) { 254 for (menu = parent->list; menu; menu = menu->next) {
262 basedep = expr_transform(menu->dep); 255 basedep = expr_transform(menu->dep);
263 dep = parentdep; 256 basedep = expr_alloc_and(expr_copy(parentdep), basedep);
264 if (sym && sym_is_choice(sym) && menu->sym) {
265 enum symbol_type type = menu->sym->type;
266
267 if (type == S_UNKNOWN)
268 type = sym->type;
269 if (type != S_TRISTATE)
270 dep = expr_alloc_comp(E_EQUAL, sym, &symbol_yes);
271 }
272 basedep = expr_alloc_and(expr_copy(dep), basedep);
273 basedep = expr_eliminate_dups(basedep); 257 basedep = expr_eliminate_dups(basedep);
274 menu->dep = basedep; 258 menu->dep = basedep;
275 if (menu->sym) 259 if (menu->sym)
@@ -342,8 +326,7 @@ void menu_finalize(struct menu *parent)
342 "values not supported"); 326 "values not supported");
343 } 327 }
344 current_entry = menu; 328 current_entry = menu;
345 if (menu->sym->type == S_UNKNOWN) 329 menu_set_type(sym->type);
346 menu_set_type(sym->type);
347 menu_add_symbol(P_CHOICE, sym, NULL); 330 menu_add_symbol(P_CHOICE, sym, NULL);
348 prop = sym_get_choice_prop(sym); 331 prop = sym_get_choice_prop(sym);
349 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr) 332 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr)