Skip to content

Commit

Permalink
staging: comedi: cb_pcidda: rename local variable 'index'
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Oct 25, 2012
1 parent 6648337 commit 2730c73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/comedi/drivers/cb_pcidda.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit 2730c73

Please sign in to comment.