Commit 91d4beba authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: cb_pcidda: rename 'thisboard' variables

For aesthetics, rename the 'thisboard' variables to 'board'. That name
is more commonly used for the boardinfo pointer in comedi drivers.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5e97650c
...@@ -335,18 +335,18 @@ static int cb_pcidda_auto_attach(struct comedi_device *dev, ...@@ -335,18 +335,18 @@ static int cb_pcidda_auto_attach(struct comedi_device *dev,
unsigned long context) unsigned long context)
{ {
struct pci_dev *pcidev = comedi_to_pci_dev(dev); struct pci_dev *pcidev = comedi_to_pci_dev(dev);
const struct cb_pcidda_board *thisboard = NULL; const struct cb_pcidda_board *board = NULL;
struct cb_pcidda_private *devpriv; struct cb_pcidda_private *devpriv;
struct comedi_subdevice *s; struct comedi_subdevice *s;
int i; int i;
int ret; int ret;
if (context < ARRAY_SIZE(cb_pcidda_boards)) if (context < ARRAY_SIZE(cb_pcidda_boards))
thisboard = &cb_pcidda_boards[context]; board = &cb_pcidda_boards[context];
if (!thisboard) if (!board)
return -ENODEV; return -ENODEV;
dev->board_ptr = thisboard; dev->board_ptr = board;
dev->board_name = thisboard->name; dev->board_name = board->name;
devpriv = comedi_alloc_devpriv(dev, sizeof(*devpriv)); devpriv = comedi_alloc_devpriv(dev, sizeof(*devpriv));
if (!devpriv) if (!devpriv)
...@@ -366,8 +366,8 @@ static int cb_pcidda_auto_attach(struct comedi_device *dev, ...@@ -366,8 +366,8 @@ static int cb_pcidda_auto_attach(struct comedi_device *dev,
/* analog output subdevice */ /* analog output subdevice */
s->type = COMEDI_SUBD_AO; s->type = COMEDI_SUBD_AO;
s->subdev_flags = SDF_WRITABLE; s->subdev_flags = SDF_WRITABLE;
s->n_chan = thisboard->ao_chans; s->n_chan = board->ao_chans;
s->maxdata = (1 << thisboard->ao_bits) - 1; s->maxdata = (1 << board->ao_bits) - 1;
s->range_table = &cb_pcidda_ranges; s->range_table = &cb_pcidda_ranges;
s->insn_write = cb_pcidda_ao_insn_write; s->insn_write = cb_pcidda_ao_insn_write;
...@@ -384,7 +384,7 @@ static int cb_pcidda_auto_attach(struct comedi_device *dev, ...@@ -384,7 +384,7 @@ static int cb_pcidda_auto_attach(struct comedi_device *dev,
devpriv->eeprom_data[i] = cb_pcidda_read_eeprom(dev, i); devpriv->eeprom_data[i] = cb_pcidda_read_eeprom(dev, i);
/* set calibrations dacs */ /* set calibrations dacs */
for (i = 0; i < thisboard->ao_chans; i++) for (i = 0; i < board->ao_chans; i++)
cb_pcidda_calibrate(dev, i, devpriv->ao_range[i]); cb_pcidda_calibrate(dev, i, devpriv->ao_range[i]);
return 0; return 0;
......
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