For aesthetics, remove "interrupt_" from this functions name to shorten
it a bit.

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 | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/comedi/drivers/adl_pci9118.c 
b/drivers/staging/comedi/drivers/adl_pci9118.c
index 87c2ddd..6582349 100644
--- a/drivers/staging/comedi/drivers/adl_pci9118.c
+++ b/drivers/staging/comedi/drivers/adl_pci9118.c
@@ -386,8 +386,8 @@ static void pci9118_set_chanlist(struct comedi_device *dev,
        /* udelay(100); important delay, or first sample will be crippled */
 }
 
-static void interrupt_pci9118_ai_mode4_switch(struct comedi_device *dev,
-                                             unsigned int next_buf)
+static void pci9118_ai_mode4_switch(struct comedi_device *dev,
+                                   unsigned int next_buf)
 {
        struct pci9118_private *devpriv = dev->private;
        struct pci9118_dmabuf *dmabuf = &devpriv->dmabuf[next_buf];
@@ -649,10 +649,8 @@ static void interrupt_pci9118_ai_dma(struct comedi_device 
*dev,
        if (more_dma && devpriv->dma_doublebuf) {
                devpriv->dma_actbuf = 1 - devpriv->dma_actbuf;
                pci9118_amcc_setup_dma(dev, devpriv->dma_actbuf);
-               if (devpriv->ai_do == 4) {
-                       interrupt_pci9118_ai_mode4_switch(dev,
-                                                         devpriv->dma_actbuf);
-               }
+               if (devpriv->ai_do == 4)
+                       pci9118_ai_mode4_switch(dev, devpriv->dma_actbuf);
        }
 
        if (n_all)
@@ -670,7 +668,7 @@ static void interrupt_pci9118_ai_dma(struct comedi_device 
*dev,
        if (more_dma && !devpriv->dma_doublebuf) {
                pci9118_amcc_setup_dma(dev, 0);
                if (devpriv->ai_do == 4)
-                       interrupt_pci9118_ai_mode4_switch(dev, 0);
+                       pci9118_ai_mode4_switch(dev, 0);
        }
 }
 
-- 
2.5.1

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

Reply via email to