Commit 2730c736 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: cb_pcidda: rename local variable 'index'

For aesthetic reasons, rename the local variable 'index' used in
the attach_pci function to simply 'i'.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 66483378
...@@ -481,7 +481,7 @@ static int cb_pcidda_attach_pci(struct comedi_device *dev, ...@@ -481,7 +481,7 @@ static int cb_pcidda_attach_pci(struct comedi_device *dev,
struct cb_pcidda_private *devpriv; struct cb_pcidda_private *devpriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
unsigned long iobase_8255; unsigned long iobase_8255;
int index; int i;
int ret; int ret;
thisboard = cb_pcidda_find_boardinfo(dev, pcidev); thisboard = cb_pcidda_find_boardinfo(dev, pcidev);
...@@ -527,12 +527,12 @@ static int cb_pcidda_attach_pci(struct comedi_device *dev, ...@@ -527,12 +527,12 @@ static int cb_pcidda_attach_pci(struct comedi_device *dev,
subdev_8255_init(dev, s, NULL, iobase_8255 + PORT2A); subdev_8255_init(dev, s, NULL, iobase_8255 + PORT2A);
/* Read the caldac eeprom data */ /* Read the caldac eeprom data */
for (index = 0; index < EEPROM_SIZE; index++) for (i = 0; i < EEPROM_SIZE; i++)
devpriv->eeprom_data[index] = cb_pcidda_read_eeprom(dev, index); devpriv->eeprom_data[i] = cb_pcidda_read_eeprom(dev, i);
/* set calibrations dacs */ /* set calibrations dacs */
for (index = 0; index < thisboard->ao_chans; index++) for (i = 0; i < thisboard->ao_chans; i++)
cb_pcidda_calibrate(dev, index, devpriv->ao_range[index]); cb_pcidda_calibrate(dev, i, devpriv->ao_range[i]);
dev_info(dev->class_dev, "%s attached\n", dev->board_name); dev_info(dev->class_dev, "%s attached\n", dev->board_name);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment