The patch titled ioremap: fixed MIPS build error has been added to the -mm tree. Its filename is generic-ioremap_page_range-mips-conversion-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ioremap: fixed MIPS build error From: Yoichi Yuasa <yoichi_yuasa@xxxxxxxxxxxxxx> This patch has fixed following build error. This error occurred in relation to generic-ioremap_page_range-mips-conversion.patch CC arch/mips/mm/ioremap.o arch/mips/mm/ioremap.c: In function `__ioremap': arch/mips/mm/ioremap.c:58: error: `high_memory' undeclared (first use in this function) arch/mips/mm/ioremap.c:58: error: (Each undeclared identifier is reported only once arch/mips/mm/ioremap.c:58: error: for each function it appears in.) arch/mips/mm/ioremap.c:65: error: `mem_map' undeclared (first use in this function) arch/mips/mm/ioremap.c:65: error: increment of pointer to unknown structure arch/mips/mm/ioremap.c:65: error: arithmetic on pointer to an incomplete type arch/mips/mm/ioremap.c:66: warning: implicit declaration of function `PageReserved' make[1]: *** [arch/mips/mm/ioremap.o] Error 1 make: *** [arch/mips/mm] Error 2 Cc: Haavard Skinnemoen <hskinnemoen@xxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/mips/mm/ioremap.c | 1 + 1 files changed, 1 insertion(+) diff -puN arch/mips/mm/ioremap.c~generic-ioremap_page_range-mips-conversion-fix arch/mips/mm/ioremap.c --- a/arch/mips/mm/ioremap.c~generic-ioremap_page_range-mips-conversion-fix +++ a/arch/mips/mm/ioremap.c @@ -6,6 +6,7 @@ * (C) Copyright 1995 1996 Linus Torvalds * (C) Copyright 2001, 2002 Ralf Baechle */ +#include <linux/mm.h> #include <linux/module.h> #include <asm/addrspace.h> #include <asm/byteorder.h> _ Patches currently in -mm which might be from yoichi_yuasa@xxxxxxxxxxxxxx are reduce-max_nr_zones-move-highmem-counters-into-highmemc-h-fix.patch irq-fixed-coding-style.patch irq-removed-a-extra-line.patch generic-ioremap_page_range-mips-conversion-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