Browse Source

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>
Luca Ellero 11 years ago
parent
commit
7bbddb60e7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      drivers/staging/ced1401/ced_ioc.c

+ 3 - 3
drivers/staging/ced1401/ced_ioc.c

@@ -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;
 }
 
 /****************************************************************************