mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 14:56:54 -04:00
staging: ced1401: fix ced_state_of_1401()
Rename camel case arguments and locals in function ced_state_of_1401() Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b1b9286e29
commit
abfc7692f1
@@ -997,16 +997,16 @@ int ced_kill_io(struct ced_data *ced)
|
||||
*****************************************************************************/
|
||||
int ced_state_of_1401(struct ced_data *ced)
|
||||
{
|
||||
int iReturn;
|
||||
int ret;
|
||||
mutex_lock(&ced->io_mutex);
|
||||
|
||||
ced_quick_check(ced, false, false); /* get state up to date, no reset */
|
||||
iReturn = ced->current_state;
|
||||
ced_quick_check(ced, false, false); /* get state up to date, no reset */
|
||||
ret = ced->current_state;
|
||||
|
||||
mutex_unlock(&ced->io_mutex);
|
||||
dev_dbg(&ced->interface->dev, "%s: %d\n", __func__, iReturn);
|
||||
dev_dbg(&ced->interface->dev, "%s: %d\n", __func__, ret);
|
||||
|
||||
return iReturn;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
||||
Reference in New Issue
Block a user