Home
last modified time | relevance | path

Searched refs:PCMUIO_PORT_REG (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/drivers/comedi/drivers/
H A Dpcmuio.c87 #define PCMUIO_PORT_REG(x) (0x00 + (x)) macro
163 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()