staging: ced1401: rename WaitEvent()
authorLuca Ellero <luca.ellero@brickedbrain.com>
Mon, 30 Jun 2014 09:58:13 +0000 (11:58 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Jul 2014 22:58:13 +0000 (15:58 -0700)
rename camel case function WaitEvent() to ced_wait_event()

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

index 6210dde70e115bad7225ea8777e1dddc2d66ce22..5972fd0c4f8bb42a3517cb2db604c279c0e84ef6 100644 (file)
@@ -809,12 +809,12 @@ int ced_set_event(DEVICE_EXTENSION *pdx, struct transfer_event __user *pTE)
 }
 
 /****************************************************************************
-** WaitEvent
+** ced_wait_event
 ** Sleep the process with a timeout waiting for an event. Returns the number
 ** of times that a block met the event condition since we last cleared it or
 ** 0 if timed out, or -ve error (bad area or not set, or signal).
 ****************************************************************************/
-int WaitEvent(DEVICE_EXTENSION *pdx, int nArea, int msTimeOut)
+int ced_wait_event(DEVICE_EXTENSION *pdx, int nArea, int msTimeOut)
 {
        int iReturn;
        if ((unsigned)nArea >= MAX_TRANSAREAS)
@@ -857,7 +857,7 @@ int WaitEvent(DEVICE_EXTENSION *pdx, int nArea, int msTimeOut)
 
 /****************************************************************************
 ** TestEvent
-** Test the event to see if a WaitEvent would return immediately. Returns the
+** Test the event to see if a ced_wait_event would return immediately. Returns the
 ** number of times a block completed since the last call, or 0 if none or a
 ** negative error.
 ****************************************************************************/
index c9b01bef4515f3fb2588635b395ac6f1800d31e7..1e1f6dcb48cde62fdce9df6f26ba26767af870b2 100644 (file)
@@ -1325,7 +1325,7 @@ static long ced_ioctl(struct file *file, unsigned int cmd, unsigned long ulArg)
                return FreeCircBlock(pdx, (TCIRCBLOCK __user *) ulArg);
 
        case _IOC_NR(IOCTL_CED_WAITEVENT):
-               return WaitEvent(pdx, (int)(ulArg & 0xff), (int)(ulArg >> 8));
+               return ced_wait_event(pdx, (int)(ulArg & 0xff), (int)(ulArg >> 8));
 
        case _IOC_NR(IOCTL_CED_TESTEVENT):
                return TestEvent(pdx, (int)ulArg);
index a1968a8088dfcd59792c48ddaf476087e7d1b9bd..3a6db9ca3e13e5b7e9563f19c862df6747082e9b 100644 (file)
@@ -239,6 +239,6 @@ extern int DbgStopLoop(DEVICE_EXTENSION *pdx);
 extern int SetCircular(DEVICE_EXTENSION *pdx, struct transfer_area_desc __user *pTD);
 extern int GetCircBlock(DEVICE_EXTENSION *pdx, TCIRCBLOCK __user *pCB);
 extern int FreeCircBlock(DEVICE_EXTENSION *pdx, TCIRCBLOCK __user *pCB);
-extern int WaitEvent(DEVICE_EXTENSION *pdx, int nArea, int msTimeOut);
+extern int ced_wait_event(DEVICE_EXTENSION *pdx, int nArea, int msTimeOut);
 extern int TestEvent(DEVICE_EXTENSION *pdx, int nArea);
 #endif