mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
staging: comedi: ni_mio_common: fix the ni_write[blw]() functions
commitbd3a3cd6c2upstream. Memory mapped io (dev->mmio) should not also be writing to the ioport (dev->iobase) registers. Add the missing 'else' to these functions. Fixes:0953ee4acc("staging: comedi: ni_mio_common: checkpatch.pl cleanup (else not useful)") Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
263b0af7cc
commit
62fe263236
@@ -246,24 +246,24 @@ static void ni_writel(struct comedi_device *dev, uint32_t data, int reg)
|
||||
{
|
||||
if (dev->mmio)
|
||||
writel(data, dev->mmio + reg);
|
||||
|
||||
outl(data, dev->iobase + reg);
|
||||
else
|
||||
outl(data, dev->iobase + reg);
|
||||
}
|
||||
|
||||
static void ni_writew(struct comedi_device *dev, uint16_t data, int reg)
|
||||
{
|
||||
if (dev->mmio)
|
||||
writew(data, dev->mmio + reg);
|
||||
|
||||
outw(data, dev->iobase + reg);
|
||||
else
|
||||
outw(data, dev->iobase + reg);
|
||||
}
|
||||
|
||||
static void ni_writeb(struct comedi_device *dev, uint8_t data, int reg)
|
||||
{
|
||||
if (dev->mmio)
|
||||
writeb(data, dev->mmio + reg);
|
||||
|
||||
outb(data, dev->iobase + reg);
|
||||
else
|
||||
outb(data, dev->iobase + reg);
|
||||
}
|
||||
|
||||
static uint32_t ni_readl(struct comedi_device *dev, int reg)
|
||||
|
||||
Reference in New Issue
Block a user