From: H Hartley Sweeten Date: Thu, 6 Sep 2012 01:44:44 +0000 (-0700) Subject: staging: comedi: ke_counter: remove subdevice pointer math X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=bce27067e50e799fdada532d440d087eec6a571c;p=linux-beck.git staging: comedi: ke_counter: remove subdevice pointer math Convert the comedi_subdevice access from pointer math to array access. Signed-off-by: H Hartley Sweeten Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/ke_counter.c b/drivers/staging/comedi/drivers/ke_counter.c index a2d0bb43631c..e867b720f666 100644 --- a/drivers/staging/comedi/drivers/ke_counter.c +++ b/drivers/staging/comedi/drivers/ke_counter.c @@ -145,7 +145,7 @@ static int cnt_attach_pci(struct comedi_device *dev, if (ret) return ret; - s = dev->subdevices + 0; + s = &dev->subdevices[0]; dev->read_subdev = s; s->type = COMEDI_SUBD_COUNTER;