[PATCH] v850: Update checksum.h to match changed function signatures
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / asm-v850 / mmu.h
CommitLineData
1da177e4
LT
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__ */