diff options
-rw-r--r-- | scripts/kconfig/zconf.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y index 22fceb264cf5..c28f1a8f721d 100644 --- a/scripts/kconfig/zconf.y +++ b/scripts/kconfig/zconf.y | |||
@@ -31,7 +31,7 @@ struct symbol *symbol_hash[SYMBOL_HASHSIZE]; | |||
31 | static struct menu *current_menu, *current_entry; | 31 | static struct menu *current_menu, *current_entry; |
32 | 32 | ||
33 | %} | 33 | %} |
34 | %expect 30 | 34 | %expect 29 |
35 | 35 | ||
36 | %union | 36 | %union |
37 | { | 37 | { |
@@ -461,7 +461,7 @@ visibility_list: | |||
461 | | visibility_list T_EOL | 461 | | visibility_list T_EOL |
462 | ; | 462 | ; |
463 | 463 | ||
464 | visible: T_VISIBLE if_expr | 464 | visible: T_VISIBLE if_expr T_EOL |
465 | { | 465 | { |
466 | menu_add_visibility($2); | 466 | menu_add_visibility($2); |
467 | }; | 467 | }; |