diff options
Diffstat (limited to 'arch/mips/include/asm/pgtable.h')
| -rw-r--r-- | arch/mips/include/asm/pgtable.h | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/include/asm/pgtable.h b/arch/mips/include/asm/pgtable.h index 93598ba0135..7e40f377817 100644 --- a/arch/mips/include/asm/pgtable.h +++ b/arch/mips/include/asm/pgtable.h @@ -368,8 +368,9 @@ extern void __update_cache(struct vm_area_struct *vma, unsigned long address,  	pte_t pte);  static inline void update_mmu_cache(struct vm_area_struct *vma, -	unsigned long address, pte_t pte) +	unsigned long address, pte_t *ptep)  { +	pte_t pte = *ptep;  	__update_tlb(vma, address, pte);  	__update_cache(vma, address, pte);  }  |