The patch titled qconf: hide empty list items has been added to the -mm tree. Its filename is qconf-hide-empty-list-items.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: qconf: hide empty list items From: "Cyrill V. Gorcunov" <gorcunov@xxxxxxxxx> This patch fixes showing empty config list items if "Option/Show All Options" is turned on. For example empty items appears on list of 'Block Layer' menu. Signed-off-by: Cyrill V. Gorcunov <gorcunov@xxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Cc: Oleg Verych <olecom@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- scripts/kconfig/qconf.cc | 2 ++ 1 file changed, 2 insertions(+) diff -puN scripts/kconfig/qconf.cc~qconf-hide-empty-list-items scripts/kconfig/qconf.cc --- a/scripts/kconfig/qconf.cc~qconf-hide-empty-list-items +++ a/scripts/kconfig/qconf.cc @@ -606,6 +606,8 @@ void ConfigList::updateMenuList(P* paren visible = menu_is_visible(child); if (showAll || visible) { + if (!child->sym && !child->list && !child->prompt) + continue; if (!item || item->menu != child) item = new ConfigItem(parent, last, child, visible); else _ Patches currently in -mm which might be from gorcunov@xxxxxxxxx are origin.patch qconf-fix-showing-help-info-on-failed-search.patch qconf-back-button-behaviour-normalization.patch qconf-hide-empty-list-items.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html