diff options
author | H Hartley Sweeten <hartleys@visionengravers.com> | 2012-09-06 05:30:08 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-06 07:03:52 +0400 |
commit | d8029dcf1be06797d75ff53100bf45949d4a2767 (patch) | |
tree | 7d7b2424f5276730fa1ef1a496b3adc91a2c1e2d | |
parent | 39d37be4113f8c423ab2a3a7af37cd50c802d779 (diff) | |
download | linux-d8029dcf1be06797d75ff53100bf45949d4a2767.tar.xz |
staging: comedi: amplc_pc263: remove subdevice pointer math
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>
-rw-r--r-- | drivers/staging/comedi/drivers/amplc_pc263.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/comedi/drivers/amplc_pc263.c b/drivers/staging/comedi/drivers/amplc_pc263.c index 017e33ea8b7c..60830ccfb903 100644 --- a/drivers/staging/comedi/drivers/amplc_pc263.c +++ b/drivers/staging/comedi/drivers/amplc_pc263.c @@ -225,7 +225,7 @@ static int pc263_common_attach(struct comedi_device *dev, unsigned long iobase) if (ret) return ret; - s = dev->subdevices + 0; + s = &dev->subdevices[0]; /* digital output subdevice */ s->type = COMEDI_SUBD_DO; s->subdev_flags = SDF_READABLE | SDF_WRITABLE; |