From: H Hartley Sweeten Date: Thu, 5 Dec 2013 20:43:47 +0000 (-0700) Subject: staging: comedi: rtd520: use dev->read_subdev X-Git-Tag: v3.14-rc1~13^2~528 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9eba3a279be68ec7ff553fac33749498e7a9b733;p=platform%2Fkernel%2Flinux-exynos.git staging: comedi: rtd520: use dev->read_subdev Use the dev->read_subdev that was setup in the device attach instead of accessing the dev->subdevices array directly. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/rtd520.c b/drivers/staging/comedi/drivers/rtd520.c index c6a664f..0f026af 100644 --- a/drivers/staging/comedi/drivers/rtd520.c +++ b/drivers/staging/comedi/drivers/rtd520.c @@ -689,7 +689,7 @@ static int ai_read_dregs(struct comedi_device *dev, struct comedi_subdevice *s) static irqreturn_t rtd_interrupt(int irq, void *d) { struct comedi_device *dev = d; - struct comedi_subdevice *s = &dev->subdevices[0]; + struct comedi_subdevice *s = dev->read_subdev; struct rtd_private *devpriv = dev->private; u32 overrun; u16 status;