Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 57d54889cd00db2752994b389ba714138652e60c authored by Linus Torvalds on 08 March 2010, 18:45:44 UTC
Linux 2.6.34-rc1
Tip revision: 57d5488
mmu.h
/*
 * 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.
 */

#ifndef _XTENSA_MMU_H
#define _XTENSA_MMU_H

#ifndef CONFIG_MMU
#include <asm/nommu.h>
#else

/* Default "unsigned long" context */
typedef unsigned long mm_context_t;

#endif /* CONFIG_MMU */
#endif	/* _XTENSA_MMU_H */
back to top