Commit 6fc01d32 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: fl512: remove subdevice pointer math

Convert the comedi_subdevice access from pointer math to array
access.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1b39406b
...@@ -140,7 +140,7 @@ static int fl512_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -140,7 +140,7 @@ static int fl512_attach(struct comedi_device *dev, struct comedi_devconfig *it)
* this if the definitions of the supdevices, 2 have been defined * this if the definitions of the supdevices, 2 have been defined
*/ */
/* Analog indput */ /* Analog indput */
s = dev->subdevices + 0; s = &dev->subdevices[0];
/* define subdevice as Analog In */ /* define subdevice as Analog In */
s->type = COMEDI_SUBD_AI; s->type = COMEDI_SUBD_AI;
/* you can read it from userspace */ /* you can read it from userspace */
...@@ -156,7 +156,7 @@ static int fl512_attach(struct comedi_device *dev, struct comedi_devconfig *it) ...@@ -156,7 +156,7 @@ static int fl512_attach(struct comedi_device *dev, struct comedi_devconfig *it)
printk(KERN_INFO "comedi: fl512: subdevice 0 initialized\n"); printk(KERN_INFO "comedi: fl512: subdevice 0 initialized\n");
/* Analog output */ /* Analog output */
s = dev->subdevices + 1; s = &dev->subdevices[1];
/* define subdevice as Analog OUT */ /* define subdevice as Analog OUT */
s->type = COMEDI_SUBD_AO; s->type = COMEDI_SUBD_AO;
/* you can write it from userspace */ /* you can write it from userspace */
......
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