1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <linux/mm.h>
22#include <linux/kernel.h>
23#include <linux/string.h>
24#include <linux/types.h>
25
26#include <asm/setup.h>
27#include <asm/segment.h>
28#include <asm/page.h>
29#include <asm/pgtable.h>
30#include <asm/traps.h>
31#include <asm/io.h>
32
33void cache_clear(unsigned long paddr, int len)
34{
35}
36
37
38void cache_push(unsigned long paddr, int len)
39{
40}
41
42void cache_push_v(unsigned long vaddr, int len)
43{
44}
45
46
47
48
49
50unsigned long kernel_map(unsigned long paddr, unsigned long size,
51 int nocacheflag, unsigned long *memavailp)
52{
53 return paddr;
54}
55