staging: comedi: ni_mio_common: tidy up the EEPROM subdevice init
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 14 Jul 2014 19:24:02 +0000 (12:24 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 16 Jul 2014 20:24:44 +0000 (13:24 -0700)
For aesthetics, add some whitespace to the subdevice init.

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_mio_common.c

index 49c22d61fb90b68ce9eb0f7f04328372ffbbbd43..8f7edcdc1f1d0840ae79433e79397a7141105262 100644 (file)
@@ -5665,17 +5665,17 @@ static int ni_E_init(struct comedi_device *dev,
                caldac_setup(dev, s);
        }
 
-       /* EEPROM */
+       /* EEPROM subdevice */
        s = &dev->subdevices[NI_EEPROM_SUBDEV];
-       s->type = COMEDI_SUBD_MEMORY;
-       s->subdev_flags = SDF_READABLE | SDF_INTERNAL;
-       s->maxdata = 0xff;
+       s->type         = COMEDI_SUBD_MEMORY;
+       s->subdev_flags = SDF_READABLE | SDF_INTERNAL;
+       s->maxdata      = 0xff;
        if (devpriv->is_m_series) {
-               s->n_chan = M_SERIES_EEPROM_SIZE;
-               s->insn_read = &ni_m_series_eeprom_insn_read;
+               s->n_chan       = M_SERIES_EEPROM_SIZE;
+               s->insn_read    = ni_m_series_eeprom_insn_read;
        } else {
-               s->n_chan = 512;
-               s->insn_read = &ni_eeprom_insn_read;
+               s->n_chan       = 512;
+               s->insn_read    = ni_eeprom_insn_read;
        }
 
        /* PFI */
This page took 0.029064 seconds and 5 git commands to generate.