From: Russell King Date: Fri, 28 Nov 2008 17:04:11 +0000 (+0000) Subject: [ARM] shark: remove old unused "translated" IO macros X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=514161b601ff5d6e089582f8d8ad74baea0d200b;p=linux.git [ARM] shark: remove old unused "translated" IO macros Signed-off-by: Russell King --- diff --git a/arch/arm/mach-shark/include/mach/io.h b/arch/arm/mach-shark/include/mach/io.h index 92475922c068f..751ab419e4ff4 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