GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / m32r / include / asm / mmu.h
blob150cb92bb6664e0ead1795a81e93ebed8f33f579
1 #ifndef _ASM_M32R_MMU_H
2 #define _ASM_M32R_MMU_H
4 #if !defined(CONFIG_MMU)
6 typedef struct {
7 unsigned long end_brk;
8 } mm_context_t;
10 #else /* CONFIG_MMU */
12 /* Default "unsigned long" context */
13 #ifndef CONFIG_SMP
14 typedef unsigned long mm_context_t;
15 #else
16 typedef unsigned long mm_context_t[NR_CPUS];
17 #endif
19 #endif /* CONFIG_MMU */
21 #endif /* _ASM_M32R_MMU_H */