diff options
author | Rob Herring <rob.herring@calxeda.com> | 2012-03-07 04:34:19 +0100 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2012-03-07 04:34:19 +0100 |
commit | ed5bf6e884dc176acdd17cbc653154dc02718239 (patch) | |
tree | 61c04988efee9f7d53aa5e3f6f0a4fa6f89eb14d /arch/arm/mach-ebsa110/include/mach/io.h | |
parent | ARM: ixp4xx: use runtime ioremap hook (diff) | |
download | linux-ed5bf6e884dc176acdd17cbc653154dc02718239.tar.xz linux-ed5bf6e884dc176acdd17cbc653154dc02718239.zip |
ARM: ebsa110: use runtime ioremap hook
Convert ebsa110 platforms to use run-time ioremap hook instead of the
compile time hook.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Cc: Russell King <linux@arm.linux.org.uk>
Diffstat (limited to '')
-rw-r--r-- | arch/arm/mach-ebsa110/include/mach/io.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/arm/mach-ebsa110/include/mach/io.h b/arch/arm/mach-ebsa110/include/mach/io.h index 44679db672fb..11bb0799424b 100644 --- a/arch/arm/mach-ebsa110/include/mach/io.h +++ b/arch/arm/mach-ebsa110/include/mach/io.h @@ -62,15 +62,6 @@ void __writel(u32 val, void __iomem *addr); #define writew(v,b) __writew(v,b) #define writel(v,b) __writel(v,b) -static inline void __iomem *__arch_ioremap(unsigned long cookie, size_t size, - unsigned int flags) -{ - return (void __iomem *)cookie; -} - -#define __arch_ioremap __arch_ioremap -#define __arch_iounmap(cookie) do { } while (0) - extern void insb(unsigned int port, void *buf, int sz); extern void insw(unsigned int port, void *buf, int sz); extern void insl(unsigned int port, void *buf, int sz); |