diff options
| author | Greg Ungerer <gerg@uclinux.org> | 2011-03-28 08:32:05 -0400 |
|---|---|---|
| committer | Greg Ungerer <gerg@uclinux.org> | 2011-05-23 20:03:50 -0400 |
| commit | 593732bd41a6f16eeed9880ae7d51920fc5350ff (patch) | |
| tree | 9ee9bf84b02f103594eefcb819096856bf64cc6f /arch/m68k | |
| parent | 92474a2513e828c27e371728845f24cef98748b2 (diff) | |
m68knommu: remove stubs for __ioremap() and iounmap()
The implementation of iounmap() and __ioremap() for non-mmu m68k is
trivial. We can inline them in m68knommu headers and remove the trivial
implementations.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k')
| -rw-r--r-- | arch/m68k/include/asm/io_no.h | 8 | ||||
| -rw-r--r-- | arch/m68k/kernel/m68k_ksyms_no.c | 2 | ||||
| -rw-r--r-- | arch/m68k/mm/Makefile_no | 2 | ||||
| -rw-r--r-- | arch/m68k/mm/kmap_no.c | 37 |
4 files changed, 6 insertions, 43 deletions
diff --git a/arch/m68k/include/asm/io_no.h b/arch/m68k/include/asm/io_no.h index cf20f3097af..353bf754a97 100644 --- a/arch/m68k/include/asm/io_no.h +++ b/arch/m68k/include/asm/io_no.h | |||
| @@ -144,8 +144,10 @@ static inline void io_insl(unsigned int addr, void *buf, int len) | |||
| 144 | #define IOMAP_NOCACHE_NONSER 2 | 144 | #define IOMAP_NOCACHE_NONSER 2 |
| 145 | #define IOMAP_WRITETHROUGH 3 | 145 | #define IOMAP_WRITETHROUGH 3 |
| 146 | 146 | ||
| 147 | extern void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag); | 147 | static inline void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag) |
| 148 | 148 | { | |
| 149 | return (void *) physaddr; | ||
| 150 | } | ||
| 149 | static inline void *ioremap(unsigned long physaddr, unsigned long size) | 151 | static inline void *ioremap(unsigned long physaddr, unsigned long size) |
| 150 | { | 152 | { |
| 151 | return __ioremap(physaddr, size, IOMAP_NOCACHE_SER); | 153 | return __ioremap(physaddr, size, IOMAP_NOCACHE_SER); |
| @@ -163,7 +165,7 @@ static inline void *ioremap_fullcache(unsigned long physaddr, unsigned long size | |||
| 163 | return __ioremap(physaddr, size, IOMAP_FULL_CACHING); | 165 | return __ioremap(physaddr, size, IOMAP_FULL_CACHING); |
| 164 | } | 166 | } |
| 165 | 167 | ||
| 166 | extern void iounmap(void *addr); | 168 | #define iounmap(addr) do { } while(0) |
| 167 | 169 | ||
| 168 | /* | 170 | /* |
| 169 | * Convert a physical pointer to a virtual kernel pointer for /dev/mem | 171 | * Convert a physical pointer to a virtual kernel pointer for /dev/mem |
diff --git a/arch/m68k/kernel/m68k_ksyms_no.c b/arch/m68k/kernel/m68k_ksyms_no.c index 10af0af4dde..c26717bcf30 100644 --- a/arch/m68k/kernel/m68k_ksyms_no.c +++ b/arch/m68k/kernel/m68k_ksyms_no.c | |||
| @@ -20,8 +20,6 @@ extern int dump_fpu(struct pt_regs *, elf_fpregset_t *); | |||
| 20 | 20 | ||
| 21 | /* platform dependent support */ | 21 | /* platform dependent support */ |
| 22 | 22 | ||
| 23 | EXPORT_SYMBOL(__ioremap); | ||
| 24 | EXPORT_SYMBOL(iounmap); | ||
| 25 | EXPORT_SYMBOL(dump_fpu); | 23 | EXPORT_SYMBOL(dump_fpu); |
| 26 | 24 | ||
| 27 | EXPORT_SYMBOL(ip_fast_csum); | 25 | EXPORT_SYMBOL(ip_fast_csum); |
diff --git a/arch/m68k/mm/Makefile_no b/arch/m68k/mm/Makefile_no index b54ab6b4b52..80579c6a688 100644 --- a/arch/m68k/mm/Makefile_no +++ b/arch/m68k/mm/Makefile_no | |||
| @@ -2,4 +2,4 @@ | |||
| 2 | # Makefile for the linux m68knommu specific parts of the memory manager. | 2 | # Makefile for the linux m68knommu specific parts of the memory manager. |
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | obj-y += init.o kmap.o | 5 | obj-y += init.o |
diff --git a/arch/m68k/mm/kmap_no.c b/arch/m68k/mm/kmap_no.c deleted file mode 100644 index 38b2abe9d9a..00000000000 --- a/arch/m68k/mm/kmap_no.c +++ /dev/null | |||
| @@ -1,37 +0,0 @@ | |||
| 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/mm.h> | ||
| 9 | #include <linux/kernel.h> | ||
| 10 | #include <linux/string.h> | ||
| 11 | #include <linux/types.h> | ||
| 12 | #include <linux/vmalloc.h> | ||
| 13 | |||
| 14 | #include <asm/setup.h> | ||
| 15 | #include <asm/segment.h> | ||
| 16 | #include <asm/page.h> | ||
| 17 | #include <asm/pgalloc.h> | ||
| 18 | #include <asm/io.h> | ||
| 19 | #include <asm/system.h> | ||
| 20 | |||
| 21 | #undef DEBUG | ||
| 22 | |||
| 23 | /* | ||
| 24 | * Map some physical address range into the kernel address space. | ||
| 25 | */ | ||
| 26 | void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag) | ||
| 27 | { | ||
| 28 | return (void *)physaddr; | ||
| 29 | } | ||
| 30 | |||
| 31 | /* | ||
| 32 | * Unmap a ioremap()ed region again. | ||
| 33 | */ | ||
| 34 | void iounmap(void *addr) | ||
| 35 | { | ||
| 36 | } | ||
| 37 | |||
