staging: comedi: ke_counter: rename 'subdevice' variable to 's'
Rename the variable used for the comedi_subdevice pointer from 'subdevice' to 's'. This is more typical in other comedi drivers and helps when searching with grep. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
35fcaeb87d
commit
30c4d3b862
@ -125,7 +125,7 @@ static int cnt_attach_pci(struct comedi_device *dev,
|
||||
struct pci_dev *pcidev)
|
||||
{
|
||||
const struct cnt_board_struct *board;
|
||||
struct comedi_subdevice *subdevice;
|
||||
struct comedi_subdevice *s;
|
||||
int ret;
|
||||
|
||||
comedi_set_hw_dev(dev, &pcidev->dev);
|
||||
@ -145,15 +145,15 @@ static int cnt_attach_pci(struct comedi_device *dev,
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
subdevice = dev->subdevices + 0;
|
||||
dev->read_subdev = subdevice;
|
||||
s = dev->subdevices + 0;
|
||||
dev->read_subdev = s;
|
||||
|
||||
subdevice->type = COMEDI_SUBD_COUNTER;
|
||||
subdevice->subdev_flags = SDF_READABLE /* | SDF_COMMON */ ;
|
||||
subdevice->n_chan = board->cnt_channel_nbr;
|
||||
subdevice->maxdata = (1 << board->cnt_bits) - 1;
|
||||
subdevice->insn_read = cnt_rinsn;
|
||||
subdevice->insn_write = cnt_winsn;
|
||||
s->type = COMEDI_SUBD_COUNTER;
|
||||
s->subdev_flags = SDF_READABLE /* | SDF_COMMON */ ;
|
||||
s->n_chan = board->cnt_channel_nbr;
|
||||
s->maxdata = (1 << board->cnt_bits) - 1;
|
||||
s->insn_read = cnt_rinsn;
|
||||
s->insn_write = cnt_winsn;
|
||||
|
||||
/* select 20MHz clock */
|
||||
outb(3, dev->iobase + 248);
|
||||
|
Loading…
Reference in New Issue
Block a user