staging: comedi: 8255: remove subdevice pointer math
authorH Hartley Sweeten <hartleys@visionengravers.com>
Thu, 6 Sep 2012 01:21:53 +0000 (18:21 -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/8255.c

index 4c9977b..e2506dd 100644 (file)
@@ -403,7 +403,7 @@ static int dev_8255_attach(struct comedi_device *dev,
                return ret;
 
        for (i = 0; i < dev->n_subdevices; i++) {
-               s = dev->subdevices + i;
+               s = &dev->subdevices[i];
                iobase = it->options[i];
 
                if (!request_region(iobase, _8255_SIZE, "8255")) {
@@ -429,7 +429,7 @@ static void dev_8255_detach(struct comedi_device *dev)
        int i;
 
        for (i = 0; i < dev->n_subdevices; i++) {
-               s = dev->subdevices + i;
+               s = &dev->subdevices[i];
                if (s->type != COMEDI_SUBD_UNUSED) {
                        spriv = s->private;
                        release_region(spriv->iobase, _8255_SIZE);