diff options
Diffstat (limited to 'arch/sparc/include/asm/mmu_context_32.h')
| -rw-r--r-- | arch/sparc/include/asm/mmu_context_32.h | 11 | 
1 files changed, 3 insertions, 8 deletions
diff --git a/arch/sparc/include/asm/mmu_context_32.h b/arch/sparc/include/asm/mmu_context_32.h index 671a997b9e6..01456c90072 100644 --- a/arch/sparc/include/asm/mmu_context_32.h +++ b/arch/sparc/include/asm/mmu_context_32.h @@ -1,8 +1,6 @@  #ifndef __SPARC_MMU_CONTEXT_H  #define __SPARC_MMU_CONTEXT_H -#include <asm/btfixup.h> -  #ifndef __ASSEMBLY__  #include <asm-generic/mm_hooks.h> @@ -23,14 +21,11 @@ static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk)   * all the page tables have been flushed.  Our job is to destroy   * any remaining processor-specific state.   */ -BTFIXUPDEF_CALL(void, destroy_context, struct mm_struct *) - -#define destroy_context(mm) BTFIXUP_CALL(destroy_context)(mm) +void destroy_context(struct mm_struct *mm);  /* Switch the current MM context. */ -BTFIXUPDEF_CALL(void, switch_mm, struct mm_struct *, struct mm_struct *, struct task_struct *) - -#define switch_mm(old_mm, mm, tsk) BTFIXUP_CALL(switch_mm)(old_mm, mm, tsk) +void switch_mm(struct mm_struct *old_mm, struct mm_struct *mm, +	       struct task_struct *tsk);  #define deactivate_mm(tsk,mm)	do { } while (0)  |