[PATCH] some more av7110 dvb-driver updates
[linux-2.6/history.git] / include / asm-m68knommu / mmu.h
blob9a9c7bbca2a08983cd79b67b46a2faa9f7094036
1 #ifndef __M68KNOMMU_MMU_H
2 #define __M68KNOMMU_MMU_H
4 /* Copyright (C) 2002, David McCullough <davidm@snapgear.com> */
6 struct mm_rblock_struct {
7 int size;
8 int refcount;
9 void *kblock;
12 struct mm_tblock_struct {
13 struct mm_rblock_struct *rblock;
14 struct mm_tblock_struct *next;
17 typedef struct {
18 struct mm_tblock_struct tblock;
19 unsigned long end_brk;
20 } mm_context_t;
22 #endif /* __M68KNOMMU_MMU_H */