diff options
Diffstat (limited to 'arch/powerpc/mm/mem.c')
| -rw-r--r-- | arch/powerpc/mm/mem.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index b9b152558f9..311224cdb7a 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c @@ -494,13 +494,13 @@ EXPORT_SYMBOL(flush_icache_user_range);   * This must always be called with the pte lock held.   */  void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, -		      pte_t pte) +		      pte_t *ptep)  {  #ifdef CONFIG_PPC_STD_MMU  	unsigned long access = 0, trap;  	/* We only want HPTEs for linux PTEs that have _PAGE_ACCESSED set */ -	if (!pte_young(pte) || address >= TASK_SIZE) +	if (!pte_young(*ptep) || address >= TASK_SIZE)  		return;  	/* We try to figure out if we are coming from an instruction  |