summaryrefslogtreecommitdiff
path: root/arch/arm/mach-shark
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2008-11-28 17:04:11 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-11-28 22:08:12 +0000
commit514161b601ff5d6e089582f8d8ad74baea0d200b (patch)
treedcc071360a96174516f97b659ee28117cc07e81c /arch/arm/mach-shark
parent1dab59c09b049ec2d2b89ec7afdc0e18d51719b8 (diff)
[ARM] shark: remove old unused "translated" IO macros
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-shark')
-rw-r--r--arch/arm/mach-shark/include/mach/io.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/arm/mach-shark/include/mach/io.h b/arch/arm/mach-shark/include/mach/io.h
index 92475922c068..751ab419e4ff 100644
--- a/arch/arm/mach-shark/include/mach/io.h
+++ b/arch/arm/mach-shark/include/mach/io.h
@@ -36,21 +36,4 @@ static inline unsigned int __ioaddr (unsigned int port) \
#define __mem_pci(addr) (addr)
-/*
- * Translated address IO functions
- *
- * IO address has already been translated to a virtual address
- */
-#define outb_t(v,p) \
- (*(volatile unsigned char *)(p) = (v))
-
-#define inb_t(p) \
- (*(volatile unsigned char *)(p))
-
-#define outl_t(v,p) \
- (*(volatile unsigned long *)(p) = (v))
-
-#define inl_t(p) \
- (*(volatile unsigned long *)(p))
-
#endif