/arch/xtensa/include/asm/mmu.h

http://github.com/mirrors/linux · C Header · 22 lines · 11 code · 4 blank · 7 comment · 0 complexity · 2bcb16cb616008b0ec0f7c13bd9e2ca5 MD5 · raw file

  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2001 - 2013 Tensilica Inc.
  7. */
  8. #ifndef _XTENSA_MMU_H
  9. #define _XTENSA_MMU_H
  10. #ifndef CONFIG_MMU
  11. #include <asm-generic/mmu.h>
  12. #else
  13. typedef struct {
  14. unsigned long asid[NR_CPUS];
  15. unsigned int cpu;
  16. } mm_context_t;
  17. #endif /* CONFIG_MMU */
  18. #endif /* _XTENSA_MMU_H */