aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig/conf.c')
-rw-r--r--scripts/kconfig/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c
index d1a0368bd438..fda63136ae68 100644
--- a/scripts/kconfig/conf.c
+++ b/scripts/kconfig/conf.c
@@ -400,9 +400,9 @@ static int conf_choice(struct menu *menu)
400 continue; 400 continue;
401 } 401 }
402 sym_set_choice_value(sym, child->sym); 402 sym_set_choice_value(sym, child->sym);
403 if (child->list) { 403 for (child = child->list; child; child = child->next) {
404 indent += 2; 404 indent += 2;
405 conf(child->list); 405 conf(child);
406 indent -= 2; 406 indent -= 2;
407 } 407 }
408 return 1; 408 return 1;