The patch titled qconf: hide empty list items has been removed from the -mm tree. Its filename was qconf-hide-empty-list-items.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 - 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