Convert the comedi_subdevice access from pointer math to array
access.

Signed-off-by: H Hartley Sweeten <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
---
 drivers/staging/comedi/drivers/poc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/comedi/drivers/poc.c 
b/drivers/staging/comedi/drivers/poc.c
index c253bb9..78dfe16 100644
--- a/drivers/staging/comedi/drivers/poc.c
+++ b/drivers/staging/comedi/drivers/poc.c
@@ -164,7 +164,7 @@ static int poc_attach(struct comedi_device *dev, struct 
comedi_devconfig *it)
                return -ENOMEM;
 
        /* analog output subdevice */
-       s = dev->subdevices + 0;
+       s = &dev->subdevices[0];
        s->type = board->type;
        s->n_chan = board->n_chan;
        s->maxdata = (1 << board->n_bits) - 1;
-- 
1.7.11

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to