]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: ced1401: rename ReadDMAInfo()
authorLuca Ellero <luca.ellero@brickedbrain.com>
Mon, 30 Jun 2014 09:57:49 +0000 (11:57 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Jul 2014 22:58:11 +0000 (15:58 -0700)
rename camel case function ReadDMAInfo() to ced_read_dma_info()

Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ced1401/usb1401.c

index 0eb96732d20c121e486eb7205675b19d1cbb8d31..1fabdfaad2257d346137ef84521cf9065631c020 100644 (file)
@@ -929,7 +929,7 @@ static bool ced_read_huff(volatile unsigned int *pDWord, char *pBuf,
 
 /***************************************************************************
 **
-** ReadDMAInfo
+** ced_read_dma_info
 **
 ** Tries to read info about the dma request from the 1401 and decode it into
 ** the dma descriptor block. We have at this point had the escape character
@@ -941,7 +941,7 @@ static bool ced_read_huff(volatile unsigned int *pDWord, char *pBuf,
 **  we start handling the data at offset zero.
 **
 *****************************************************************************/
-static bool ReadDMAInfo(volatile DMADESC *pDmaDesc, DEVICE_EXTENSION *pdx,
+static bool ced_read_dma_info(volatile DMADESC *pDmaDesc, DEVICE_EXTENSION *pdx,
                        char *pBuf, unsigned int dwCount)
 {
        bool bResult = false;   /*  assume we won't succeed */
@@ -1041,7 +1041,7 @@ static int Handle1401Esc(DEVICE_EXTENSION *pdx, char *pCh,
        } else {
                spin_lock(&pdx->stagedLock);    /*  Lock others out */
 
-               if (ReadDMAInfo(&pdx->rDMAInfo, pdx, pCh, dwCount)) {   /*  Get DMA parameters */
+               if (ced_read_dma_info(&pdx->rDMAInfo, pdx, pCh, dwCount)) {     /*  Get DMA parameters */
                        unsigned short wTransType = pdx->rDMAInfo.wTransType;   /*  check transfer type */
 
                        dev_dbg(&pdx->interface->dev,
@@ -1074,7 +1074,7 @@ static int Handle1401Esc(DEVICE_EXTENSION *pdx, char *pCh,
                                                __func__, wTransType);
                        }
                } else          /*  Failed to read parameters */
-                       dev_err(&pdx->interface->dev, "%s: ReadDMAInfo() fail\n",
+                       dev_err(&pdx->interface->dev, "%s: ced_read_dma_info() fail\n",
                                __func__);
 
                spin_unlock(&pdx->stagedLock);  /*  OK here */