Searched refs:PCMUIO_PORT_REG (Results 1 – 1 of 1) sorted by relevance
87 #define PCMUIO_PORT_REG(x) (0x00 + (x)) macro163 outb(val & 0xff, iobase + PCMUIO_PORT_REG(port + 0)); in pcmuio_write()164 outb((val >> 8) & 0xff, iobase + PCMUIO_PORT_REG(port + 1)); in pcmuio_write()165 outb((val >> 16) & 0xff, iobase + PCMUIO_PORT_REG(port + 2)); in pcmuio_write()187 val = inb(iobase + PCMUIO_PORT_REG(port + 0)); in pcmuio_read()188 val |= (inb(iobase + PCMUIO_PORT_REG(port + 1)) << 8); in pcmuio_read()189 val |= (inb(iobase + PCMUIO_PORT_REG(port + 2)) << 16); in pcmuio_read()