Home
last modified time | relevance | path

Searched hist:a7d4f58e99dd3f6067606115ce147c15c17b6e93 (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/scripts/kconfig/
H A Dconfdata.cdiff a7d4f58e99dd3f6067606115ce147c15c17b6e93 Sun Feb 13 21:19:18 CST 2022 Masahiro Yamada <masahiroy@kernel.org> kconfig: fix missing '# end of' for empty menu

Currently, "# end of ..." is inserted when the menu goes back to its
parent.

Hence, an empty menu:

menu "Foo"
endmenu

... ends up with unbalanced menu comments, like this:

#
# Foo
#

Let's close the menu comments properly:

#
# Foo
#
# end of Foo

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>