aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-v850/mmu.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-v850/mmu.h')
-rw-r--r--include/asm-v850/mmu.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/asm-v850/mmu.h b/include/asm-v850/mmu.h
new file mode 100644
index 000000000000..e30a52becfd6
--- /dev/null
+++ b/include/asm-v850/mmu.h
@@ -0,0 +1,22 @@
1/* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */
2
3#ifndef __V850_MMU_H__
4#define __V850_MMU_H__
5
6struct mm_rblock_struct {
7 int size;
8 int refcount;
9 void *kblock;
10};
11
12struct mm_tblock_struct {
13 struct mm_rblock_struct *rblock;
14 struct mm_tblock_struct *next;
15};
16
17typedef struct {
18 struct mm_tblock_struct tblock;
19 unsigned long end_brk;
20} mm_context_t;
21
22#endif /* __V850_MMU_H__ */