diff options
Diffstat (limited to 'arch/xtensa/include/asm/mmu.h')
| -rw-r--r-- | arch/xtensa/include/asm/mmu.h | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/xtensa/include/asm/mmu.h b/arch/xtensa/include/asm/mmu.h index 04890d6e233..71afe418d0e 100644 --- a/arch/xtensa/include/asm/mmu.h +++ b/arch/xtensa/include/asm/mmu.h @@ -1,22 +1,22 @@  /* - * include/asm-xtensa/mmu.h - *   * This file is subject to the terms and conditions of the GNU General Public   * License.  See the file "COPYING" in the main directory of this archive   * for more details.   * - * Copyright (C) 2001 - 2005 Tensilica Inc. + * Copyright (C) 2001 - 2013 Tensilica Inc.   */  #ifndef _XTENSA_MMU_H  #define _XTENSA_MMU_H  #ifndef CONFIG_MMU -#include <asm/nommu.h> +#include <asm-generic/mmu.h>  #else -/* Default "unsigned long" context */ -typedef unsigned long mm_context_t; +typedef struct { +	unsigned long asid[NR_CPUS]; +	unsigned int cpu; +} mm_context_t;  #endif /* CONFIG_MMU */  #endif	/* _XTENSA_MMU_H */  | 
