aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-01-18 07:21:32 -0500
committerPaul Mundt <lethal@linux-sh.org>2010-01-18 07:21:32 -0500
commit0b59e38ffaf7b201ff6afe5b736365d16848c7e3 (patch)
tree1cc2071cbf61bf57dc774970a76768f5d157af2e
parentedf711b66f2a8a9629aa253ad8b3a5a03b5d7af5 (diff)
sh: Merge _32/_64 ioremap implementations.
There is nothing of interest in the _64 version anymore, so the _32 one can be renamed and used unconditionally. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r--arch/sh/mm/Makefile2
-rw-r--r--arch/sh/mm/ioremap.c (renamed from arch/sh/mm/ioremap_32.c)0
-rw-r--r--arch/sh/mm/ioremap_64.c47
3 files changed, 1 insertions, 48 deletions
diff --git a/arch/sh/mm/Makefile b/arch/sh/mm/Makefile
index 89ba56c20ade..0027cdea2c20 100644
--- a/arch/sh/mm/Makefile
+++ b/arch/sh/mm/Makefile
@@ -15,7 +15,7 @@ obj-y += $(cacheops-y)
15 15
16mmu-y := nommu.o extable_32.o 16mmu-y := nommu.o extable_32.o
17mmu-$(CONFIG_MMU) := extable_$(BITS).o fault_$(BITS).o \ 17mmu-$(CONFIG_MMU) := extable_$(BITS).o fault_$(BITS).o \
18 ioremap_$(BITS).o kmap.o pgtable.o tlbflush_$(BITS).o 18 ioremap.o kmap.o pgtable.o tlbflush_$(BITS).o
19 19
20obj-y += $(mmu-y) 20obj-y += $(mmu-y)
21obj-$(CONFIG_DEBUG_FS) += asids-debugfs.o 21obj-$(CONFIG_DEBUG_FS) += asids-debugfs.o
diff --git a/arch/sh/mm/ioremap_32.c b/arch/sh/mm/ioremap.c
index 24f6ba6bff71..24f6ba6bff71 100644
--- a/arch/sh/mm/ioremap_32.c
+++ b/arch/sh/mm/ioremap.c
diff --git a/arch/sh/mm/ioremap_64.c b/arch/sh/mm/ioremap_64.c
deleted file mode 100644
index fb0aa457c71e..000000000000
--- a/arch/sh/mm/ioremap_64.c
+++ /dev/null
@@ -1,47 +0,0 @@
1/*
2 * arch/sh/mm/ioremap_64.c
3 *
4 * Copyright (C) 2000, 2001 Paolo Alberelli
5 * Copyright (C) 2003 - 2007 Paul Mundt
6 *
7 * Mostly derived from arch/sh/mm/ioremap.c which, in turn is mostly
8 * derived from arch/i386/mm/ioremap.c .
9 *
10 * (C) Copyright 1995 1996 Linus Torvalds
11 *
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file "COPYING" in the main directory of this archive
14 * for more details.
15 */
16#include <linux/vmalloc.h>
17#include <linux/ioport.h>
18#include <linux/module.h>
19#include <linux/mm.h>
20#include <linux/io.h>
21#include <linux/bootmem.h>
22#include <linux/proc_fs.h>
23#include <linux/slab.h>
24#include <asm/page.h>
25#include <asm/pgalloc.h>
26#include <asm/addrspace.h>
27#include <asm/cacheflush.h>
28#include <asm/tlbflush.h>
29#include <asm/mmu.h>
30
31void __iomem *__ioremap_caller(unsigned long offset, unsigned long size,
32 unsigned long flags, void *caller)
33{
34 pgprot_t prot;
35
36 prot = __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE |
37 _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_SHARED | flags);
38
39 return ioremap_fixed(offset, size, prot);
40}
41EXPORT_SYMBOL(__ioremap_caller);
42
43void __iounmap(void __iomem *virtual)
44{
45 iounmap_fixed(virtual);
46}
47EXPORT_SYMBOL(__iounmap);