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

/drivers/staging/comedi/drivers/
H A Dpcmuio.c100 #define PCMUIO_PORT_REG(x) (0x00 + (x)) macro
177 outb(val & 0xff, iobase + PCMUIO_PORT_REG(port + 0));
178 outb((val >> 8) & 0xff, iobase + PCMUIO_PORT_REG(port + 1));
179 outb((val >> 16) & 0xff, iobase + PCMUIO_PORT_REG(port + 2));
201 val = inb(iobase + PCMUIO_PORT_REG(port + 0));
202 val |= (inb(iobase + PCMUIO_PORT_REG(port + 1)) << 8);
203 val |= (inb(iobase + PCMUIO_PORT_REG(port + 2)) << 16);

Completed in 30 milliseconds