Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 514161b6 authored by Russell King's avatar Russell King Committed by Russell King
Browse files

[ARM] shark: remove old unused "translated" IO macros

parent 1dab59c0
Loading
Loading
Loading
Loading
+0 −17
Original line number Diff line number Diff line
@@ -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