Lines Matching refs:vrc4173_io_offset
46 extern unsigned long vrc4173_io_offset;
48 #define set_vrc4173_io_offset(offset) do { vrc4173_io_offset = (offset); } while (0)
50 #define vrc4173_outb(val,port) outb((val), vrc4173_io_offset+(port))
51 #define vrc4173_outw(val,port) outw((val), vrc4173_io_offset+(port))
52 #define vrc4173_outl(val,port) outl((val), vrc4173_io_offset+(port))
53 #define vrc4173_outb_p(val,port) outb_p((val), vrc4173_io_offset+(port))
54 #define vrc4173_outw_p(val,port) outw_p((val), vrc4173_io_offset+(port))
55 #define vrc4173_outl_p(val,port) outl_p((val), vrc4173_io_offset+(port))
57 #define vrc4173_inb(port) inb(vrc4173_io_offset+(port))
58 #define vrc4173_inw(port) inw(vrc4173_io_offset+(port))
59 #define vrc4173_inl(port) inl(vrc4173_io_offset+(port))
60 #define vrc4173_inb_p(port) inb_p(vrc4173_io_offset+(port))
61 #define vrc4173_inw_p(port) inw_p(vrc4173_io_offset+(port))
62 #define vrc4173_inl_p(port) inl_p(vrc4173_io_offset+(port))
64 #define vrc4173_outsb(port,addr,count) outsb(vrc4173_io_offset+(port),(addr),(count))
65 #define vrc4173_outsw(port,addr,count) outsw(vrc4173_io_offset+(port),(addr),(count))
66 #define vrc4173_outsl(port,addr,count) outsl(vrc4173_io_offset+(port),(addr),(count))
68 #define vrc4173_insb(port,addr,count) insb(vrc4173_io_offset+(port),(addr),(count))
69 #define vrc4173_insw(port,addr,count) insw(vrc4173_io_offset+(port),(addr),(count))
70 #define vrc4173_insl(port,addr,count) insl(vrc4173_io_offset+(port),(addr),(count))