summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHirokazu Takata <takata@linux-m32r.org>2005-03-28 03:44:02 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-03-28 03:44:02 -0800
commit930e7e3fffdd252411e18e8674f0bba2d6026f9e (patch)
treedd233ee10805734279a3ee69136b08003069c086 /include
parent4497f3d2ee9b5d22399fb55bbc14c2a9e1b6c30d (diff)
[PATCH] m32r: Update MMU-less support #2
This patch is for updating m32r's MMU-less support. * arch/m32r/boot/compressed/m32r_sio.c: - Fix serial output routine * include/asm-m32r/mmu.h: - Update mm_context_t definition Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Hirokazu Takata <takata@linux-m32r.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r--include/asm-m32r/mmu.h18
1 files changed, 2 insertions, 16 deletions
diff --git a/include/asm-m32r/mmu.h b/include/asm-m32r/mmu.h
index 930093ac4830..9c00eb78ee50 100644
--- a/include/asm-m32r/mmu.h
+++ b/include/asm-m32r/mmu.h
@@ -1,25 +1,12 @@
#ifndef _ASM_M32R_MMU_H
#define _ASM_M32R_MMU_H
-/* $Id$ */
-
#include <linux/config.h>
#if !defined(CONFIG_MMU)
-struct mm_rblock_struct {
- int size;
- int refcount;
- void *kblock;
-};
-
-struct mm_tblock_struct {
- struct mm_rblock_struct *rblock;
- struct mm_tblock_struct *next;
-};
-
typedef struct {
- struct mm_tblock_struct tblock;
- unsigned long end_brk;
+ struct vm_list_struct *vmlist;
+ unsigned long end_brk;
} mm_context_t;
#else
@@ -32,4 +19,3 @@ typedef unsigned long mm_context_t[NR_CPUS];
#endif /* CONFIG_MMU */
#endif /* _ASM_M32R_MMU_H */
-