The patch titled NOMMU: make lib/ioremap.c conditional has been removed from the -mm tree. Its filename is generic-ioremap_page_range-implementation-nommu-fix.patch This patch was dropped because it was folded into generic-ioremap_page_range-implementation.patch ------------------------------------------------------ Subject: NOMMU: make lib/ioremap.c conditional From: David Howells <dhowells@xxxxxxxxxx> Make lib/ioremap.c conditional on !CONFIG_MMU. It plays with PTEs which don't exist under NOMMU conditions. Signed-off-by: David Howells <dhowells@xxxxxxxxxx> Cc: Haavard Skinnemoen <hskinnemoen@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- lib/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN lib/Makefile~generic-ioremap_page_range-implementation-nommu-fix lib/Makefile --- a/lib/Makefile~generic-ioremap_page_range-implementation-nommu-fix +++ a/lib/Makefile @@ -5,8 +5,9 @@ lib-y := errno.o ctype.o string.o vsprintf.o cmdline.o \ bust_spinlocks.o rbtree.o radix-tree.o dump_stack.o \ idr.o div64.o int_sqrt.o bitmap.o extable.o prio_tree.o \ - sha1.o ioremap.o + sha1.o +lib-$(CONFIG_MMU) += ioremap.o lib-$(CONFIG_SMP) += cpumask.o lib-y += kobject.o kref.o kobject_uevent.o klist.o _ Patches currently in -mm which might be from dhowells@xxxxxxxxxx are origin.patch nommu-dont-try-and-give-null-to-fput.patch kill-wall_jiffies.patch generic-ioremap_page_range-implementation.patch generic-ioremap_page_range-implementation-nommu-fix.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