Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/staging/comedi/drivers/
Dpcmuio.c97 #define PCMUIO_PORT_REG(x) (0x00 + (x)) macro
173 outb(val & 0xff, iobase + PCMUIO_PORT_REG(port + 0)); in pcmuio_write()
174 outb((val >> 8) & 0xff, iobase + PCMUIO_PORT_REG(port + 1)); in pcmuio_write()
175 outb((val >> 16) & 0xff, iobase + PCMUIO_PORT_REG(port + 2)); in pcmuio_write()
197 val = inb(iobase + PCMUIO_PORT_REG(port + 0)); in pcmuio_read()
198 val |= (inb(iobase + PCMUIO_PORT_REG(port + 1)) << 8); in pcmuio_read()
199 val |= (inb(iobase + PCMUIO_PORT_REG(port + 2)) << 16); in pcmuio_read()