staging: comedi: ni_labpc: don't pass dev->iobase to labpc_counter_load()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 29 Jul 2014 22:01:40 +0000 (15:01 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Jul 2014 23:55:16 +0000 (16:55 -0700)
Use the comedi_device parameter that is passed to this function to find
the dev->iobase so it does not have to be included in each call.

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 90ce57f72fc355b0f85efcaae04653d031cbaa04..7a8ff25982816b8a226e98a8b3c484becb19a2b5 100644 (file)
@@ -176,7 +176,7 @@ static const struct labpc_boardinfo labpc_boards[] = {
 #endif
 
 static void labpc_counter_load(struct comedi_device *dev,
-                              unsigned long base_address,
+                              unsigned long reg,
                               unsigned int counter_number,
                               unsigned int count,
                               unsigned int mode)
@@ -184,13 +184,13 @@ static void labpc_counter_load(struct comedi_device *dev,
        const struct labpc_boardinfo *board = comedi_board(dev);
 
        if (board->has_mmio) {
-               void __iomem *mmio_base = (void __iomem *)base_address;
+               void __iomem *mmio = (void __iomem *)dev->iobase;
 
-               i8254_mm_set_mode(mmio_base, 0, counter_number, mode);
-               i8254_mm_write(mmio_base, 0, counter_number, count);
+               i8254_mm_set_mode(mmio + reg, 0, counter_number, mode);
+               i8254_mm_write(mmio + reg, 0, counter_number, count);
        } else {
-               i8254_set_mode(base_address, 0, counter_number, mode);
-               i8254_write(base_address, 0, counter_number, count);
+               i8254_set_mode(dev->iobase + reg, 0, counter_number, mode);
+               i8254_write(dev->iobase + reg, 0, counter_number, count);
        }
 }
 
@@ -755,7 +755,7 @@ static int labpc_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
                 * load counter a1 with count of 3
                 * (pc+ manual says this is minimum allowed) using mode 0
                 */
-               labpc_counter_load(dev, dev->iobase + COUNTER_A_BASE_REG,
+               labpc_counter_load(dev, COUNTER_A_BASE_REG,
                                   1, 3, I8254_MODE0);
        } else  {
                /* just put counter a1 in mode 0 to set its output low */
@@ -804,13 +804,13 @@ static int labpc_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
                /*  set up pacing */
                labpc_adc_timing(dev, cmd, mode);
                /*  load counter b0 in mode 3 */
-               labpc_counter_load(dev, dev->iobase + COUNTER_B_BASE_REG,
+               labpc_counter_load(dev, COUNTER_B_BASE_REG,
                                   0, devpriv->divisor_b0, I8254_MODE3);
        }
        /*  set up conversion pacing */
        if (labpc_ai_convert_period(cmd, mode)) {
                /*  load counter a0 in mode 2 */
-               labpc_counter_load(dev, dev->iobase + COUNTER_A_BASE_REG,
+               labpc_counter_load(dev, COUNTER_A_BASE_REG,
                                   0, devpriv->divisor_a0, I8254_MODE2);
        } else {
                /* initialize pacer counter to prevent any problems */
@@ -821,7 +821,7 @@ static int labpc_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
        /*  set up scan pacing */
        if (labpc_ai_scan_period(cmd, mode)) {
                /*  load counter b1 in mode 2 */
-               labpc_counter_load(dev, dev->iobase + COUNTER_B_BASE_REG,
+               labpc_counter_load(dev, COUNTER_B_BASE_REG,
                                   1, devpriv->divisor_b1, I8254_MODE2);
        }
 
This page took 0.029356 seconds and 5 git commands to generate.