Go to the documentation of this file.
31 #include <asm/setup.h>
49 #define __ide_mm_insw(port, addr, n) raw_insw((u16 *)port, addr, n)
50 #define __ide_mm_insl(port, addr, n) raw_insl((u32 *)port, addr, n)
51 #define writeb(val, port) out_8(port, val)
52 #define writew(val, port) out_be16(port, val)
53 #define __ide_mm_outsw(port, addr, n) raw_outsw((u16 *)port, addr, n)
54 #define __ide_mm_outsl(port, addr, n) raw_outsl((u32 *)port, addr, n)
58 #define __ide_mm_insw(port, addr, n) io_insw((unsigned int)port, addr, n)
59 #define __ide_mm_insl(port, addr, n) io_insl((unsigned int)port, addr, n)
60 #define __ide_mm_outsw(port, addr, n) io_outsw((unsigned int)port, addr, n)
61 #define __ide_mm_outsl(port, addr, n) io_outsl((unsigned int)port, addr, n)