]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: cb_pcidda: rename local variable 'index'
authorH Hartley Sweeten <hartleys@visionengravers.com>
Wed, 24 Oct 2012 23:30:57 +0000 (16:30 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Oct 2012 02:35:49 +0000 (19:35 -0700)
For aesthetic reasons, rename the local variable 'index' used in
the attach_pci function to simply 'i'.

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

index 0e5b85d9bb9edc7b91418aa32d808f76698ae74f..511401fbdeb7b474d0a2f943d64321af3f228190 100644 (file)
@@ -481,7 +481,7 @@ static int cb_pcidda_attach_pci(struct comedi_device *dev,
        struct cb_pcidda_private *devpriv;
        struct comedi_subdevice *s;
        unsigned long iobase_8255;
-       int index;
+       int i;
        int ret;
 
        thisboard = cb_pcidda_find_boardinfo(dev, pcidev);
@@ -527,12 +527,12 @@ static int cb_pcidda_attach_pci(struct comedi_device *dev,
        subdev_8255_init(dev, s, NULL, iobase_8255 + PORT2A);
 
        /* Read the caldac eeprom data */
-       for (index = 0; index < EEPROM_SIZE; index++)
-               devpriv->eeprom_data[index] = cb_pcidda_read_eeprom(dev, index);
+       for (i = 0; i < EEPROM_SIZE; i++)
+               devpriv->eeprom_data[i] = cb_pcidda_read_eeprom(dev, i);
 
        /*  set calibrations dacs */
-       for (index = 0; index < thisboard->ao_chans; index++)
-               cb_pcidda_calibrate(dev, index, devpriv->ao_range[index]);
+       for (i = 0; i < thisboard->ao_chans; i++)
+               cb_pcidda_calibrate(dev, i, devpriv->ao_range[i]);
 
        dev_info(dev->class_dev, "%s attached\n", dev->board_name);