Rename camel case arguments and locals in function ced_state_of_1401()
Signed-off-by: Luca Ellero <[email protected]>
---
drivers/staging/ced1401/ced_ioc.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/ced1401/ced_ioc.c
b/drivers/staging/ced1401/ced_ioc.c
index c01250a..5395871 100644
--- a/drivers/staging/ced1401/ced_ioc.c
+++ b/drivers/staging/ced1401/ced_ioc.c
@@ -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;
}
/****************************************************************************
--
1.7.10.4
_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel