staging: comedi: acl7225b: remove subdevice pointer math
authorH Hartley Sweeten <hartleys@visionengravers.com>
Thu, 6 Sep 2012 01:22:25 +0000 (18:22 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 6 Sep 2012 03:01:35 +0000 (20:01 -0700)
Convert the comedi_subdevice access from pointer math to array
access.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/acl7225b.c

index ddba5db1e2e15faac52bd63073ce87c1b2fb9fde..28c7fd3a96b690b6e64dc6a5206a34063fd89d33 100644 (file)
@@ -81,7 +81,7 @@ static int acl7225b_attach(struct comedi_device *dev,
        if (ret)
                return ret;
 
-       s = dev->subdevices + 0;
+       s = &dev->subdevices[0];
        /* Relays outputs */
        s->type = COMEDI_SUBD_DO;
        s->subdev_flags = SDF_WRITABLE;
@@ -91,7 +91,7 @@ static int acl7225b_attach(struct comedi_device *dev,
        s->range_table = &range_digital;
        s->private = (void *)ACL7225_RIO_LO;
 
-       s = dev->subdevices + 1;
+       s = &dev->subdevices[1];
        /* Relays status */
        s->type = COMEDI_SUBD_DI;
        s->subdev_flags = SDF_READABLE;
@@ -101,7 +101,7 @@ static int acl7225b_attach(struct comedi_device *dev,
        s->range_table = &range_digital;
        s->private = (void *)ACL7225_RIO_LO;
 
-       s = dev->subdevices + 2;
+       s = &dev->subdevices[2];
        /* Isolated digital inputs */
        s->type = COMEDI_SUBD_DI;
        s->subdev_flags = SDF_READABLE;
This page took 0.025308 seconds and 5 git commands to generate.