Skip to content

Commit

Permalink
[ARM] shark: remove old unused "translated" IO macros
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Nov 28, 2008
1 parent 1dab59c commit 514161b
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions arch/arm/mach-shark/include/mach/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 514161b

Please sign in to comment.