OSDN Git Service

staging: emxx_udc: Update function names
authorAlexis Lothoré <alexis.lothore@gmail.com>
Wed, 10 May 2017 17:39:43 +0000 (19:39 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 May 2017 05:42:00 +0000 (07:42 +0200)
Ensure that function names does not mix upper/lower case

Signed-off-by: Alexis Lothoré <alexis.lothore@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/emxx_udc/emxx_udc.c

index 14db5f7..2d68dde 100644 (file)
@@ -574,7 +574,7 @@ static int ep0_out_pio(struct nbu2ss_udc *udc, u8 *buf, u32 length)
 
 /*-------------------------------------------------------------------------*/
 /* Endpoint 0 OUT Transfer (PIO, OverBytes) */
-static int EP0_out_OverBytes(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
+static int ep0_out_overbytes(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
 {
        u32             i;
        u32             iReadSize = 0;
@@ -621,7 +621,7 @@ static int EP0_in_PIO(struct nbu2ss_udc *udc, u8 *pBuf, u32 length)
 
 /*-------------------------------------------------------------------------*/
 /* Endpoint 0 IN Transfer (PIO, OverBytes) */
-static int EP0_in_OverBytes(struct nbu2ss_udc *udc, u8 *pBuf, u32 iRemainSize)
+static int ep0_in_overbytes(struct nbu2ss_udc *udc, u8 *pBuf, u32 iRemainSize)
 {
        u32             i;
        union usb_reg_access  Temp32;
@@ -724,7 +724,7 @@ static int _nbu2ss_ep0_in_transfer(
 
        if ((iRemainSize < sizeof(u32)) && (result != EP0_PACKETSIZE)) {
                pBuffer += result;
-               result += EP0_in_OverBytes(udc, pBuffer, iRemainSize);
+               result += ep0_in_overbytes(udc, pBuffer, iRemainSize);
                req->div_len = result;
        }
 
@@ -765,7 +765,7 @@ static int _nbu2ss_ep0_out_transfer(
                        pBuffer += result;
                        iRemainSize -= result;
 
-                       result = EP0_out_OverBytes(udc, pBuffer
+                       result = ep0_out_overbytes(udc, pBuffer
                                        , min(iRemainSize, iRecvLength));
                        req->req.actual += result;
                }