The patch titled sh: Fix typo in page.h has been added to the -mm tree. Its filename is sh-fix-typo-in-pageh.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sh: Fix typo in page.h From: Mark Haverkamp <markh@xxxxxxxx> There appears to be a typo in asm-sh/page.h It was noticed while doing a cross compile test. Signed-off-by: Mark Haverkamp <markh@xxxxxxxx> Cc: Paul Mundt <lethal@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/asm-sh/page.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/asm-sh/page.h~sh-fix-typo-in-pageh include/asm-sh/page.h --- a/include/asm-sh/page.h~sh-fix-typo-in-pageh +++ a/include/asm-sh/page.h @@ -104,7 +104,7 @@ typedef struct { unsigned long pgprot; } /* PFN start number, because of __MEMORY_START */ #define PFN_START (__MEMORY_START >> PAGE_SHIFT) -#define ARCH_PFN_OFFSET (FPN_START) +#define ARCH_PFN_OFFSET (PFN_START) #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT) #define pfn_valid(pfn) (((pfn) - PFN_START) < max_mapnr) #define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT) _ Patches currently in -mm which might be from markh@xxxxxxxx are sh-fix-typo-in-pageh.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