]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
staging: comedi: pcmda12: remove {LSB,MSB}_PORT macros
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 4 Jun 2013 02:05:27 +0000 (19:05 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Jun 2013 22:35:38 +0000 (15:35 -0700)
These macros rely on a local variable having a specific name.
Remove them.

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/pcmda12.c

index 2b628944445935bffcfc28ac01a32a4dc43498a6..4e214e98620d3a5b7781d328303e458534b09e6f 100644 (file)
@@ -51,8 +51,6 @@ Configuration Options:
 
 #define CHANS 8
 #define IOSIZE 16
-#define LSB_PORT(chan) (dev->iobase + (chan)*2)
-#define MSB_PORT(chan) (LSB_PORT(chan)+1)
 
 /* AI range is not configurable, it's set by jumpers on the board */
 static const struct comedi_lrange pcmda12_ranges = {
@@ -70,16 +68,16 @@ struct pcmda12_private {
 };
 
 static void zero_chans(struct comedi_device *dev)
-{                              /* sets up an
-                                  ASIC chip to defaults */
+{
        int i;
+
        for (i = 0; i < CHANS; ++i) {
-/*      /\* do this as one instruction?? *\/ */
-/*      outw(0, LSB_PORT(chan)); */
-               outb(0, LSB_PORT(i));
-               outb(0, MSB_PORT(i));
+
+               outb(0, dev->iobase + (i * 2));
+               outb(0, dev->iobase + (i * 2) + 1);
        }
-       inb(LSB_PORT(0));       /* update chans. */
+       /* Initiate transfer by reading one of the AO registers. */
+       inb(dev->iobase);
 }
 
 static int pcmda12_ao_insn_write(struct comedi_device *dev,
@@ -90,19 +88,20 @@ static int pcmda12_ao_insn_write(struct comedi_device *dev,
        struct pcmda12_private *devpriv = dev->private;
        unsigned int chan = CR_CHAN(insn->chanspec);
        unsigned int val = devpriv->ao_readback[chan];
+       unsigned long ioreg = dev->iobase + (chan * 2);
        int i;
 
        for (i = 0; i < insn->n; ++i) {
                val = data[i];
-               outb(val & 0xff, LSB_PORT(chan));
-               outb((val >> 8) & 0xff, MSB_PORT(chan));
+               outb(val & 0xff, ioreg);
+               outb((val >> 8) & 0xff, ioreg + 1);
 
                /*
                 * Initiate transfer if not in simultaneaous xfer
                 * mode by reading one of the AO registers.
                 */
                if (!devpriv->simultaneous_xfer_mode)
-                       inb(LSB_PORT(chan));
+                       inb(ioreg);
        }
        devpriv->ao_readback[chan] = val;
 
@@ -123,7 +122,7 @@ static int pcmda12_ao_insn_read(struct comedi_device *dev,
         * AO registers. All analog outputs will then be updated.
         */
        if (devpriv->simultaneous_xfer_mode)
-               inb(LSB_PORT(chan));
+               inb(dev->iobase);
 
        for (i = 0; i < insn->n; i++)
                data[i] = devpriv->ao_readback[chan];