From: Ralf Baechle Date: Thu, 17 Apr 2008 12:42:50 +0000 (+0100) Subject: [MIPS] Don't use max_pfn which is no longer initialized these days. X-Git-Tag: v2.6.26-rc3~131^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f2546adedda600687bba6ef3e1546a8ecbc16eb;p=platform%2Fkernel%2Flinux-exynos.git [MIPS] Don't use max_pfn which is no longer initialized these days. Still won't play nicely with esotheric configurations such as discontig memory ... Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c index f73a898..fa67e40 100644 --- a/arch/mips/kernel/vpe.c +++ b/arch/mips/kernel/vpe.c @@ -269,7 +269,7 @@ static void *alloc_progmem(unsigned long len) * This means you must tell Linux to use less memory than you * physically have, for example by passing a mem= boot argument. */ - addr = pfn_to_kaddr(max_pfn); + addr = pfn_to_kaddr(max_low_pfn); memset(addr, 0, len); #else /* simple grab some mem for now */