Rename this function so it has namespace associated with the driver.

Signed-off-by: H Hartley Sweeten <hswee...@visionengravers.com>
Cc: Ian Abbott <abbo...@mev.co.uk>
Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
---
 drivers/staging/comedi/drivers/adl_pci9118.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/comedi/drivers/adl_pci9118.c 
b/drivers/staging/comedi/drivers/adl_pci9118.c
index ac1d298..be0d2a7 100644
--- a/drivers/staging/comedi/drivers/adl_pci9118.c
+++ b/drivers/staging/comedi/drivers/adl_pci9118.c
@@ -457,7 +457,7 @@ static unsigned int pci9118_ai_samples_ready(struct 
comedi_device *dev,
        return n_samples;
 }
 
-static void move_block_from_dma(struct comedi_device *dev,
+static void pci9118_ai_dma_xfer(struct comedi_device *dev,
                                struct comedi_subdevice *s,
                                unsigned short *dma_buffer,
                                unsigned int n_raw_samples)
@@ -654,7 +654,7 @@ static void interrupt_pci9118_ai_dma(struct comedi_device 
*dev,
        }
 
        if (n_all)
-               move_block_from_dma(dev, s, dmabuf->virt, n_all);
+               pci9118_ai_dma_xfer(dev, s, dmabuf->virt, n_all);
 
        if (!devpriv->ai_neverending) {
                if (s->async->scans_done >= cmd->stop_arg)
-- 
2.5.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to