]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: aio_aio12_8: move comedi_lrange definition
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 12 Oct 2015 19:16:33 +0000 (12:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Oct 2015 17:26:06 +0000 (10:26 -0700)
For aesthetics, move the comedi_lrange definition used in this driver
to the follow the norm in comedi drivers and rename the variable.

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

index 0ba557ef9a7f76253321a85f81ae53f0c5b93388..f9a90e5259c63ac4324f1a72ec6d1e3a408d4ad6 100644 (file)
 #define AIO12_8_DAC_ENABLE_REG         0x18
 #define AIO12_8_DAC_ENABLE_REF_ENA     BIT(0)
 
+static const struct comedi_lrange aio_aio12_8_range = {
+       4, {
+               UNI_RANGE(5),
+               BIP_RANGE(5),
+               UNI_RANGE(10),
+               BIP_RANGE(10)
+       }
+};
+
 struct aio12_8_boardtype {
        const char *name;
        int ai_nchan;
@@ -188,15 +197,6 @@ static int aio_aio12_8_counter_insn_config(struct comedi_device *dev,
        return insn->n;
 }
 
-static const struct comedi_lrange range_aio_aio12_8 = {
-       4, {
-               UNI_RANGE(5),
-               BIP_RANGE(5),
-               UNI_RANGE(10),
-               BIP_RANGE(10)
-       }
-};
-
 static int aio_aio12_8_attach(struct comedi_device *dev,
                              struct comedi_devconfig *it)
 {
@@ -224,7 +224,7 @@ static int aio_aio12_8_attach(struct comedi_device *dev,
                s->subdev_flags = SDF_READABLE | SDF_GROUND | SDF_DIFF;
                s->n_chan       = board->ai_nchan;
                s->maxdata      = 0x0fff;
-               s->range_table  = &range_aio_aio12_8;
+               s->range_table  = &aio_aio12_8_range;
                s->insn_read    = aio_aio12_8_ai_read;
        } else {
                s->type = COMEDI_SUBD_UNUSED;
@@ -237,7 +237,7 @@ static int aio_aio12_8_attach(struct comedi_device *dev,
                s->subdev_flags = SDF_WRITABLE | SDF_GROUND | SDF_DIFF;
                s->n_chan       = 4;
                s->maxdata      = 0x0fff;
-               s->range_table  = &range_aio_aio12_8;
+               s->range_table  = &aio_aio12_8_range;
                s->insn_write   = aio_aio12_8_ao_insn_write;
 
                ret = comedi_alloc_subdev_readback(s);