kconfig: Remove menu_end_entry()
authorUlf Magnusson <ulfalizer@gmail.com>
Sun, 8 Oct 2017 22:14:48 +0000 (00:14 +0200)
committerChristian Lamparter <chunkeey@gmail.com>
Sun, 10 Feb 2019 20:47:00 +0000 (21:47 +0100)
commit2d2c41c2a3de84a2820bcb10988b4e66d654e227
tree58284fd74db5aaf193048d7d20144450c6db71b0
parentc9ae0d06ab99e64ccbd1f2f6548818e6e860e384
kconfig: Remove menu_end_entry()

menu_end_entry() is empty and completely unused as far as I can tell:

$ git log -G menu_end_entry --oneline
a02f057 [PATCH] kconfig: improve error handling in the parser
1da177e Linux-2.6.12-rc2

Last one is the initial Git commit, where menu_end_entry() is empty as
well. I couldn't find anything that redefined it on Google either.

It might be a debugging helper for setting a breakpoint after each
config, menuconfig, and comment is parsed. IMO it hurts more than it
helps in that case by making the parsing code look more complicated at a
glance than it really is, and I suspect it doesn't get used much.

Tested by running the Kconfiglib test suite, which indirectly verifies
that the .config files generated by the C implementation for each
defconfig file in the kernel stays the same.

Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
config/lkc.h
config/menu.c
config/zconf.y