Skip to content

Commit

Permalink
staging: comedi: adl_pci7x3x: remove subdevice pointer math
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Sep 6, 2012
1 parent 630b713 commit 2bac8ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/staging/comedi/drivers/adl_pci7x3x.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ static int adl_pci7x3x_attach_pci(struct comedi_device *dev,
if (board->di_nchan) {
nchan = min(board->di_nchan, 32);

s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
/* Isolated digital inputs 0 to 15/31 */
s->type = COMEDI_SUBD_DI;
s->subdev_flags = SDF_READABLE;
Expand All @@ -226,7 +226,7 @@ static int adl_pci7x3x_attach_pci(struct comedi_device *dev,

nchan = board->di_nchan - nchan;
if (nchan) {
s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
/* Isolated digital inputs 32 to 63 */
s->type = COMEDI_SUBD_DI;
s->subdev_flags = SDF_READABLE;
Expand All @@ -244,7 +244,7 @@ static int adl_pci7x3x_attach_pci(struct comedi_device *dev,
if (board->do_nchan) {
nchan = min(board->do_nchan, 32);

s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
/* Isolated digital outputs 0 to 15/31 */
s->type = COMEDI_SUBD_DO;
s->subdev_flags = SDF_WRITABLE;
Expand All @@ -259,7 +259,7 @@ static int adl_pci7x3x_attach_pci(struct comedi_device *dev,

nchan = board->do_nchan - nchan;
if (nchan) {
s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
/* Isolated digital outputs 32 to 63 */
s->type = COMEDI_SUBD_DO;
s->subdev_flags = SDF_WRITABLE;
Expand Down

0 comments on commit 2bac8ab

Please sign in to comment.