aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68knommu/mm/kmap.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/m68knommu/mm/kmap.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/m68knommu/mm/kmap.c')
-rw-r--r--arch/m68knommu/mm/kmap.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/arch/m68knommu/mm/kmap.c b/arch/m68knommu/mm/kmap.c
new file mode 100644
index 000000000000..04213e1c1e57
--- /dev/null
+++ b/arch/m68knommu/mm/kmap.c
@@ -0,0 +1,56 @@
1/*
2 * linux/arch/m68knommu/mm/kmap.c
3 *
4 * Copyright (C) 2000 Lineo, <davidm@snapgear.com>
5 * Copyright (C) 2000-2002 David McCullough <davidm@snapgear.com>
6 */
7
8#include <linux/config.h>
9#include <linux/mm.h>
10#include <linux/kernel.h>
11#include <linux/string.h>
12#include <linux/types.h>
13#include <linux/slab.h>
14#include <linux/vmalloc.h>
15
16#include <asm/setup.h>
17#include <asm/segment.h>
18#include <asm/page.h>
19#include <asm/pgalloc.h>
20#include <asm/io.h>
21#include <asm/system.h>
22
23#undef DEBUG
24
25/*
26 * Map some physical address range into the kernel address space.
27 */
28void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag)
29{
30 return (void *)physaddr;
31}
32
33/*
34 * Unmap a ioremap()ed region again.
35 */
36void iounmap(void *addr)
37{
38}
39
40/*
41 * __iounmap unmaps nearly everything, so be careful
42 * it doesn't free currently pointer/page tables anymore but it
43 * wans't used anyway and might be added later.
44 */
45void __iounmap(void *addr, unsigned long size)
46{
47}
48
49/*
50 * Set new cache mode for some kernel address space.
51 * The caller must push data for that range itself, if such data may already
52 * be in the cache.
53 */
54void kernel_set_cachemode(void *addr, unsigned long size, int cmode)
55{
56}