]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: comedi: pcl812: use subdevice (*cancel)
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Mon, 17 Feb 2014 21:27:40 +0000 (14:27 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 18 Feb 2014 19:56:50 +0000 (11:56 -0800)
Use the subdevice (*cancel) operation to remove the need for a forward
declaration.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/pcl812.c

index 0d7d3ae99514c81aa9384912c4276422d2249291..d0708f8326dfad337d9ae18c3166912dea3c99e7 100644 (file)
@@ -536,8 +536,6 @@ struct pcl812_private {
 static void setup_range_channel(struct comedi_device *dev,
                                struct comedi_subdevice *s,
                                unsigned int rangechan, char wait);
-static int pcl812_ai_cancel(struct comedi_device *dev,
-                           struct comedi_subdevice *s);
 
 static void pcl812_start_pacer(struct comedi_device *dev, bool load_timers)
 {
@@ -911,7 +909,7 @@ static irqreturn_t interrupt_pcl812_ai_int(int irq, void *d)
 
        if (err) {
                dev_dbg(dev->class_dev, "A/D cmd IRQ without DRDY!\n");
-               pcl812_ai_cancel(dev, s);
+               s->cancel(dev, s);
                s->async->events |= COMEDI_CB_EOA | COMEDI_CB_ERROR;
                comedi_event(dev, s);
                return IRQ_HANDLED;
@@ -935,7 +933,7 @@ static irqreturn_t interrupt_pcl812_ai_int(int irq, void *d)
                if (!(devpriv->ai_neverending))
                                                        /* all data sampled */
                        if (devpriv->ai_act_scan >= cmd->stop_arg) {
-                               pcl812_ai_cancel(dev, s);
+                               s->cancel(dev, s);
                                s->async->events |= COMEDI_CB_EOA;
                        }
        }
@@ -968,7 +966,7 @@ static void transfer_from_dma_buf(struct comedi_device *dev,
                        if (!devpriv->ai_neverending)
                                                        /* all data sampled */
                                if (devpriv->ai_act_scan >= cmd->stop_arg) {
-                                       pcl812_ai_cancel(dev, s);
+                                       s->cancel(dev, s);
                                        s->async->events |= COMEDI_CB_EOA;
                                        break;
                                }