Skip to content

Commit

Permalink
m68knommu: remove stubs for __ioremap() and iounmap()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Greg Ungerer committed May 24, 2011
1 parent 92474a2 commit 593732b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 43 deletions.
8 changes: 5 additions & 3 deletions arch/m68k/include/asm/io_no.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,10 @@ static inline void io_insl(unsigned int addr, void *buf, int len)
#define IOMAP_NOCACHE_NONSER 2
#define IOMAP_WRITETHROUGH 3

extern void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag);

static inline void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag)
{
return (void *) physaddr;
}
static inline void *ioremap(unsigned long physaddr, unsigned long size)
{
return __ioremap(physaddr, size, IOMAP_NOCACHE_SER);
Expand All @@ -163,7 +165,7 @@ static inline void *ioremap_fullcache(unsigned long physaddr, unsigned long size
return __ioremap(physaddr, size, IOMAP_FULL_CACHING);
}

extern void iounmap(void *addr);
#define iounmap(addr) do { } while(0)

/*
* Convert a physical pointer to a virtual kernel pointer for /dev/mem
Expand Down
2 changes: 0 additions & 2 deletions arch/m68k/kernel/m68k_ksyms_no.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ extern int dump_fpu(struct pt_regs *, elf_fpregset_t *);

/* platform dependent support */

EXPORT_SYMBOL(__ioremap);
EXPORT_SYMBOL(iounmap);
EXPORT_SYMBOL(dump_fpu);

EXPORT_SYMBOL(ip_fast_csum);
Expand Down
2 changes: 1 addition & 1 deletion arch/m68k/mm/Makefile_no
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Makefile for the linux m68knommu specific parts of the memory manager.
#

obj-y += init.o kmap.o
obj-y += init.o
37 changes: 0 additions & 37 deletions arch/m68k/mm/kmap_no.c

This file was deleted.

0 comments on commit 593732b

Please sign in to comment.