staging: ced1401: fix ced_dbg_stop_loop()

Rename camel case arguments and locals in function ced_dbg_stop_loop()

Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Luca Ellero 2014-07-10 11:04:09 +02:00 committed by Greg Kroah-Hartman
parent f1d513bbb9
commit 7bbddb60e7
1 changed files with 3 additions and 3 deletions

View File

@ -1354,15 +1354,15 @@ int ced_dbg_get_data(struct ced_data *ced, TDBGBLOCK __user *udb)
****************************************************************************/
int ced_dbg_stop_loop(struct ced_data *ced)
{
int iReturn;
int ret;
unsigned int uState, uErr;
mutex_lock(&ced->io_mutex);
dev_dbg(&ced->interface->dev, "%s\n", __func__);
iReturn = ced_get_state(ced, &uState, &uErr);
ret = ced_get_state(ced, &uState, &uErr);
mutex_unlock(&ced->io_mutex);
return iReturn;
return ret;
}
/****************************************************************************