]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
staging: comedi: ni_labpc: rename boardinfo 'memory_mapped_io'
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Fri, 22 Mar 2013 16:42:18 +0000 (09:42 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Mar 2013 18:41:51 +0000 (11:41 -0700)
Rename the boardinfo 'memory_mapped_io' to 'has_mmio'.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/ni_labpc.c
drivers/staging/comedi/drivers/ni_labpc.h

index 43cf49141e5fdb12a90bb183b4a7cd6f97529230..240db9e23f734ba1c207214014872a5c37323147 100644 (file)
@@ -350,7 +350,7 @@ static const struct labpc_boardinfo labpc_boards[] = {
                .ai_range_code          = labpc_1200_ai_gain_bits,
                .ai_range_is_unipolar   = labpc_1200_is_unipolar,
                .ai_scan_up             = 1,
-               .memory_mapped_io       = 1,
+               .has_mmio               = 1,
        },
 #endif
 };
@@ -843,7 +843,7 @@ static inline int labpc_counter_load(struct comedi_device *dev,
 {
        const struct labpc_boardinfo *board = comedi_board(dev);
 
-       if (board->memory_mapped_io)
+       if (board->has_mmio)
                return i8254_mm_load((void __iomem *)base_address, 0,
                                     counter_number, count, mode);
        else
@@ -1688,7 +1688,7 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
        }
        dev->iobase = iobase;
 
-       if (board->memory_mapped_io) {
+       if (board->has_mmio) {
                devpriv->read_byte = labpc_readb;
                devpriv->write_byte = labpc_writeb;
        } else {
@@ -1798,7 +1798,7 @@ int labpc_common_attach(struct comedi_device *dev, unsigned long iobase,
        s = &dev->subdevices[2];
        /*  if board uses io memory we have to give a custom callback
         * function to the 8255 driver */
-       if (board->memory_mapped_io)
+       if (board->has_mmio)
                subdev_8255_init(dev, s, labpc_dio_mem_callback,
                                 (unsigned long)(dev->iobase + DIO_BASE_REG));
        else
index 5976760cf75578d903a0efeeac2f6fdc7191ad78..38106568783ec1b415d6898d715cb1839d6a63ba 100644 (file)
@@ -50,7 +50,7 @@ struct labpc_boardinfo {
        unsigned ai_scan_up:1;
 
        /* uses memory mapped io instead of ioports */
-       unsigned memory_mapped_io:1;
+       unsigned has_mmio:1;
 };
 
 struct labpc_private {