Skip to content

Commit

Permalink
staging: comedi: icp_multi: 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 2de13f1 commit 27f7f10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/comedi/drivers/icp_multi.c
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ static int icp_multi_attach(struct comedi_device *dev,
subdev = 0;

if (this_board->n_aichan) {
s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
dev->read_subdev = s;
s->type = COMEDI_SUBD_AI;
s->subdev_flags = SDF_READABLE | SDF_COMMON | SDF_GROUND;
Expand All @@ -946,7 +946,7 @@ static int icp_multi_attach(struct comedi_device *dev,
}

if (this_board->n_aochan) {
s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
s->type = COMEDI_SUBD_AO;
s->subdev_flags = SDF_WRITABLE | SDF_GROUND | SDF_COMMON;
s->n_chan = this_board->n_aochan;
Expand All @@ -959,7 +959,7 @@ static int icp_multi_attach(struct comedi_device *dev,
}

if (this_board->n_dichan) {
s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
s->type = COMEDI_SUBD_DI;
s->subdev_flags = SDF_READABLE;
s->n_chan = this_board->n_dichan;
Expand All @@ -972,7 +972,7 @@ static int icp_multi_attach(struct comedi_device *dev,
}

if (this_board->n_dochan) {
s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
s->type = COMEDI_SUBD_DO;
s->subdev_flags = SDF_WRITABLE | SDF_READABLE;
s->n_chan = this_board->n_dochan;
Expand All @@ -986,7 +986,7 @@ static int icp_multi_attach(struct comedi_device *dev,
}

if (this_board->n_ctrs) {
s = dev->subdevices + subdev;
s = &dev->subdevices[subdev];
s->type = COMEDI_SUBD_COUNTER;
s->subdev_flags = SDF_WRITABLE | SDF_GROUND | SDF_COMMON;
s->n_chan = this_board->n_ctrs;
Expand Down

0 comments on commit 27f7f10

Please sign in to comment.