diff options
Diffstat (limited to 'arch/mips/mm/init.c')
| -rw-r--r-- | arch/mips/mm/init.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c index 1651942f7fe..12539af38a9 100644 --- a/arch/mips/mm/init.c +++ b/arch/mips/mm/init.c @@ -143,7 +143,7 @@ void *kmap_coherent(struct page *page, unsigned long addr)  #if defined(CONFIG_64BIT_PHYS_ADDR) && defined(CONFIG_CPU_MIPS32)  	entrylo = pte.pte_high;  #else -	entrylo = pte_val(pte) >> 6; +	entrylo = pte_to_entrylo(pte_val(pte));  #endif  	ENTER_CRITICAL(flags); @@ -298,7 +298,7 @@ void __init fixrange_init(unsigned long start, unsigned long end,  }  #ifndef CONFIG_NEED_MULTIPLE_NODES -static int __init page_is_ram(unsigned long pagenr) +int page_is_ram(unsigned long pagenr)  {  	int i; @@ -477,7 +477,7 @@ unsigned long pgd_current[NR_CPUS];   * will officially be retired.   */  pgd_t swapper_pg_dir[_PTRS_PER_PGD] __page_aligned(_PGD_ORDER); -#ifdef CONFIG_64BIT +#ifndef __PAGETABLE_PMD_FOLDED  pmd_t invalid_pmd_table[PTRS_PER_PMD] __page_aligned(PMD_ORDER);  #endif  pte_t invalid_pte_table[PTRS_PER_PTE] __page_aligned(PTE_ORDER);  |