]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[MIPS] Don't use max_pfn which is no longer initialized these days.
authorRalf Baechle <ralf@linux-mips.org>
Thu, 17 Apr 2008 12:42:50 +0000 (13:42 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 12 May 2008 15:46:51 +0000 (16:46 +0100)
Still won't play nicely with esotheric configurations such as discontig
memory ...

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/vpe.c

index f73a89850a25f49c8ec0a7c4fc0ede9b37b85726..fa67e4006960dc7d26e3f8d9fb9bc02ff288e665 100644 (file)
@@ -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 */