diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-11 20:00:55 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-15 17:45:21 +0900 |
commit | 94d4e1b6021b8d63274c9961c70f95dd2b43e6fb (patch) | |
tree | f47c21b925044f887706ab75c5ec60cffed905fe /scripts | |
parent | 4891796c6f83bb3be5567b3053428a40329d7e37 (diff) | |
download | linux-stable-94d4e1b6021b8d63274c9961c70f95dd2b43e6fb.tar.gz linux-stable-94d4e1b6021b8d63274c9961c70f95dd2b43e6fb.tar.bz2 linux-stable-94d4e1b6021b8d63274c9961c70f95dd2b43e6fb.zip |
kconfig: remove redundant menu_block rule
The code block surrounded by "menu" ... "endmenu" is stmt_list.
Remove the redundant menu_block symbol entirely.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/zconf.y | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/kconfig/zconf.y b/scripts/kconfig/zconf.y index dcbf6439ace9..eeb449bd5869 100644 --- a/scripts/kconfig/zconf.y +++ b/scripts/kconfig/zconf.y @@ -354,14 +354,7 @@ menu_end: end } }; -menu_stmt: menu_entry menu_block menu_end -; - -menu_block: - /* empty */ - | menu_block common_stmt - | menu_block menu_stmt - | menu_block choice_stmt +menu_stmt: menu_entry stmt_list menu_end ; source_stmt: T_SOURCE prompt T_EOL |