staging: comedi: ni_mio_common: remove forward declaration 14
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 28 May 2014 23:26:37 +0000 (16:26 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jun 2014 21:33:51 +0000 (14:33 -0700)
Move shutdown_ai_command() to remove the need for the 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/ni_mio_common.c

index 9897f32..e5463c9 100644 (file)
@@ -211,7 +211,6 @@ static int ni_ai_inttrig(struct comedi_device *dev, struct comedi_subdevice *s,
                         unsigned int trignum);
 static void ni_load_channelgain_list(struct comedi_device *dev,
                                     unsigned int n_chan, unsigned int *list);
-static void shutdown_ai_command(struct comedi_device *dev);
 
 static void handle_gpct_interrupt(struct comedi_device *dev,
                                  unsigned short counter_index);
@@ -822,8 +821,22 @@ static int ni_ao_wait_for_dma_load(struct comedi_device *dev)
        }
        return 0;
 }
-
 #endif /* PCIDMA */
+
+static void shutdown_ai_command(struct comedi_device *dev)
+{
+       struct comedi_subdevice *s = &dev->subdevices[NI_AI_SUBDEV];
+
+#ifdef PCIDMA
+       ni_ai_drain_dma(dev);
+#endif
+       ni_handle_fifo_dregs(dev);
+       get_last_sample_611x(dev);
+       get_last_sample_6143(dev);
+
+       s->async->events |= COMEDI_CB_EOA;
+}
+
 static void ni_handle_eos(struct comedi_device *dev, struct comedi_subdevice *s)
 {
        struct ni_private *devpriv = dev->private;
@@ -849,20 +862,6 @@ static void ni_handle_eos(struct comedi_device *dev, struct comedi_subdevice *s)
                shutdown_ai_command(dev);
 }
 
-static void shutdown_ai_command(struct comedi_device *dev)
-{
-       struct comedi_subdevice *s = &dev->subdevices[NI_AI_SUBDEV];
-
-#ifdef PCIDMA
-       ni_ai_drain_dma(dev);
-#endif
-       ni_handle_fifo_dregs(dev);
-       get_last_sample_611x(dev);
-       get_last_sample_6143(dev);
-
-       s->async->events |= COMEDI_CB_EOA;
-}
-
 static void handle_gpct_interrupt(struct comedi_device *dev,
                                  unsigned short counter_index)
 {