]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: ke_counter: rename 'subdevice' variable to 's'
authorH Hartley Sweeten <hartleys@visionengravers.com>
Thu, 6 Sep 2012 01:44:26 +0000 (18:44 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 6 Sep 2012 03:06:27 +0000 (20:06 -0700)
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>
drivers/staging/comedi/drivers/ke_counter.c

index a24e93278a48448252f8bd4ddd81b9eac0faef1d..a2d0bb43631c68d618117d62de0d2d1aa62e2112 100644 (file)
@@ -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);