From: Luca Ellero Date: Mon, 30 Jun 2014 09:58:02 +0000 (+0200) Subject: staging: ced1401: rename QuickCheck() X-Git-Tag: firefly_0821_release~176^2~3491^2~1217 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9629dbf142eb7527038edd5d8315e6c329b43d35;p=firefly-linux-kernel-4.4.55.git staging: ced1401: rename QuickCheck() rename camel case function QuickCheck() to ced_quick_check() and make it static Signed-off-by: Luca Ellero Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ced1401/ced_ioc.c b/drivers/staging/ced1401/ced_ioc.c index d3791fc269a2..02085fa58da3 100644 --- a/drivers/staging/ced1401/ced_ioc.c +++ b/drivers/staging/ced1401/ced_ioc.c @@ -345,7 +345,7 @@ static bool ced_is_1401(DEVICE_EXTENSION *pdx) } /**************************************************************************** -** QuickCheck - ALWAYS CALLED HOLDING THE io_mutex +** ced_quick_check - ALWAYS CALLED HOLDING THE io_mutex ** This is used to test for a 1401. It will try to do a quick check if all is ** OK, that is the 1401 was OK the last time it was asked, and there is no DMA ** in progress, and if the bTestBuff flag is set, the character buffers must be @@ -358,7 +358,7 @@ static bool ced_is_1401(DEVICE_EXTENSION *pdx) ** ** The return value is TRUE if a useable 1401 is found, FALSE if not */ -bool QuickCheck(DEVICE_EXTENSION *pdx, bool bTestBuff, bool bCanReset) +static bool ced_quick_check(DEVICE_EXTENSION *pdx, bool bTestBuff, bool bCanReset) { bool bRet = false; /* assume it will fail and we will reset */ bool bShortTest; @@ -407,9 +407,9 @@ bool QuickCheck(DEVICE_EXTENSION *pdx, bool bTestBuff, bool bCanReset) int Reset1401(DEVICE_EXTENSION *pdx) { mutex_lock(&pdx->io_mutex); /* Protect disconnect from new i/o */ - dev_dbg(&pdx->interface->dev, "%s: About to call QuickCheck\n", + dev_dbg(&pdx->interface->dev, "%s: About to call ced_quick_check\n", __func__); - QuickCheck(pdx, true, true); /* Check 1401, reset if not OK */ + ced_quick_check(pdx, true, true); /* Check 1401, reset if not OK */ mutex_unlock(&pdx->io_mutex); return U14ERR_NOERROR; } @@ -953,7 +953,7 @@ int StateOf1401(DEVICE_EXTENSION *pdx) int iReturn; mutex_lock(&pdx->io_mutex); - QuickCheck(pdx, false, false); /* get state up to date, no reset */ + ced_quick_check(pdx, false, false); /* get state up to date, no reset */ iReturn = pdx->sCurrentState; mutex_unlock(&pdx->io_mutex); @@ -1056,7 +1056,7 @@ int CheckSelfTest(DEVICE_EXTENSION *pdx, TGET_SELFTEST __user *pGST) if ((pdx->nPipes == 4) && (pdx->s1401Type <= TYPEPOWER)) ced_is_1401(pdx); /* Get 1401 reset and OK */ else - QuickCheck(pdx, true, true); /* Otherwise check without reset unless problems */ + ced_quick_check(pdx, true, true); /* Otherwise check without reset unless problems */ } mutex_unlock(&pdx->io_mutex); diff --git a/drivers/staging/ced1401/usb1401.h b/drivers/staging/ced1401/usb1401.h index 3d94559c9b87..23c755795925 100644 --- a/drivers/staging/ced1401/usb1401.h +++ b/drivers/staging/ced1401/usb1401.h @@ -213,7 +213,6 @@ extern int ced_send_string(DEVICE_EXTENSION *pdx, const char __user *pData, unsi extern int ced_send_char(DEVICE_EXTENSION *pdx, char c); extern int ced_get_state(DEVICE_EXTENSION *pdx, __u32 *state, __u32 *error); extern int ced_read_write_cancel(DEVICE_EXTENSION *pdx); -extern bool QuickCheck(DEVICE_EXTENSION *pdx, bool bTestBuff, bool bCanReset); extern int Reset1401(DEVICE_EXTENSION *pdx); extern int GetChar(DEVICE_EXTENSION *pdx); extern int GetString(DEVICE_EXTENSION *pdx, char __user *pUser, int n);