From: Ralf Baechle Date: Mon, 10 Mar 2008 09:31:50 +0000 (+0000) Subject: [MIPS] Fix yosemite build error X-Git-Tag: v2.6.25-rc6~33^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2ac7401d11370b7a8e3a1c74aac03a021fd61048;p=profile%2Fivi%2Fkernel-x86-ivi.git [MIPS] Fix yosemite build error didn't pickup the definition of PKMAP_BASE from fixmap.h, ugh. Signed-off-by: Ralf Baechle --- diff --git a/include/asm-mips/highmem.h b/include/asm-mips/highmem.h index 4d6bd5c..4374ab2 100644 --- a/include/asm-mips/highmem.h +++ b/include/asm-mips/highmem.h @@ -39,7 +39,6 @@ extern pte_t *pkmap_page_table; * easily, subsequent pte tables have to be allocated in one physical * chunk of RAM. */ -#define PKMAP_BASE (0xfe000000UL) #define LAST_PKMAP 1024 #define LAST_PKMAP_MASK (LAST_PKMAP-1) #define PKMAP_NR(virt) ((virt-PKMAP_BASE) >> PAGE_SHIFT) diff --git a/include/asm-mips/pgtable-32.h b/include/asm-mips/pgtable-32.h index a094709..ceefe02 100644 --- a/include/asm-mips/pgtable-32.h +++ b/include/asm-mips/pgtable-32.h @@ -65,6 +65,8 @@ extern int add_temporary_entry(unsigned long entrylo0, unsigned long entrylo1, #define VMALLOC_START MAP_BASE +#define PKMAP_BASE (0xfe000000UL) + #ifdef CONFIG_HIGHMEM # define VMALLOC_END (PKMAP_BASE-2*PAGE_SIZE) #else