mirror of https://gitee.com/openkylin/linux.git
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:
parent
f1d513bbb9
commit
7bbddb60e7
|
@ -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;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
Loading…
Reference in New Issue