]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: ni_labpc: refactor labpc_8255_mmio()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 29 Jul 2014 22:01:42 +0000 (15:01 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Jul 2014 23:55:16 +0000 (16:55 -0700)
Refactor the 8255 support code in preperation for using the comedi_device
'mmio' member.

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>
drivers/staging/comedi/drivers/ni_labpc.c

index 819eeec9d20dbee67004f3f143a654c598ed6294..7f5072bae4933ecaf44efe3d0de54a7baa9b72a0 100644 (file)
@@ -1048,14 +1048,17 @@ static int labpc_ao_insn_read(struct comedi_device *dev,
        return 1;
 }
 
-static int labpc_8255_mmio(int dir, int port, int data, unsigned long iobase)
+static int labpc_8255_mmio(int dir, int port, int data, unsigned long arg)
 {
+       struct comedi_device *dev = (struct comedi_device *)arg;
+       void __iomem *mmio = (void __iomem *)dev->iobase + DIO_BASE_REG;
+
        if (dir) {
-               writeb(data, (void __iomem *)(iobase + port));
+               writeb(data, mmio + port);
                return 0;
        }
 
-       return readb((void __iomem *)(iobase + port));
+       return readb(mmio + port);
 }
 
 /* lowlevel write to eeprom/dac */
@@ -1413,9 +1416,13 @@ int labpc_common_attach(struct comedi_device *dev,
 
        /* 8255 dio */
        s = &dev->subdevices[2];
-       ret = subdev_8255_init(dev, s,
-                              (board->has_mmio) ? labpc_8255_mmio : NULL,
-                              dev->iobase + DIO_BASE_REG);
+       if (board->has_mmio) {
+               ret = subdev_8255_init(dev, s, labpc_8255_mmio,
+                                      (unsigned long)dev);
+       } else {
+               ret = subdev_8255_init(dev, s, NULL,
+                                      dev->iobase + DIO_BASE_REG);
+       }
        if (ret)
                return ret;