From: H Hartley Sweeten Date: Fri, 30 Aug 2013 18:48:44 +0000 (-0700) Subject: staging: comedi: comedi_parport: use dev->read_subdev in interrupt handler X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b3860bff98c4ca988b31636bee4dc906f837001d;p=deliverable%2Flinux.git staging: comedi: comedi_parport: use dev->read_subdev in interrupt handler Use the dev->read_subdev to get the comedi_subdevice 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/comedi_parport.c b/drivers/staging/comedi/drivers/comedi_parport.c index 724d9a7cd1cd..d164243a09f7 100644 --- a/drivers/staging/comedi/drivers/comedi_parport.c +++ b/drivers/staging/comedi/drivers/comedi_parport.c @@ -222,7 +222,7 @@ static int parport_intr_cancel(struct comedi_device *dev, static irqreturn_t parport_interrupt(int irq, void *d) { struct comedi_device *dev = d; - struct comedi_subdevice *s = &dev->subdevices[3]; + struct comedi_subdevice *s = dev->read_subdev; unsigned int ctrl; ctrl = inb(dev->iobase + PARPORT_CTRL_REG);