From: Luca Ellero <luca.ellero@brickedbrain.com>
Date: Thu, 10 Jul 2014 09:04:03 +0000 (+0200)
Subject: staging: ced1401: fix ced_type_of_1401()
X-Git-Tag: firefly_0821_release~176^2~3491^2~980
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=55da356b3d74c922ac46cdaf8fbfe67e2c37363d;p=firefly-linux-kernel-4.4.55.git

staging: ced1401: fix ced_type_of_1401()

Rename camel case arguments and locals in function ced_type_of_1401()

Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---

diff --git a/drivers/staging/ced1401/ced_ioc.c b/drivers/staging/ced1401/ced_ioc.c
index 7e598e2d713f..9ac275ccd31f 100644
--- a/drivers/staging/ced1401/ced_ioc.c
+++ b/drivers/staging/ced1401/ced_ioc.c
@@ -1123,30 +1123,31 @@ int ced_check_self_test(struct ced_data *ced, TGET_SELFTEST __user *ugst)
 ****************************************************************************/
 int ced_type_of_1401(struct ced_data *ced)
 {
-	int iReturn = TYPEUNKNOWN;
+	int ret = TYPEUNKNOWN;
+
 	mutex_lock(&ced->io_mutex);
 	dev_dbg(&ced->interface->dev, "%s\n", __func__);
 
 	switch (ced->type) {
 	case TYPE1401:
-		iReturn = U14ERR_STD;
+		ret = U14ERR_STD;
 		break;		/*  Handle these types directly */
 	case TYPEPLUS:
-		iReturn = U14ERR_PLUS;
+		ret = U14ERR_PLUS;
 		break;
 	case TYPEU1401:
-		iReturn = U14ERR_U1401;
+		ret = U14ERR_U1401;
 		break;
 	default:
 		if ((ced->type >= TYPEPOWER) && (ced->type <= 25))
-			iReturn = ced->type + 4;	/*  We can calculate types */
+			ret = ced->type + 4;	/*  We can calculate types */
 		else		/*   for up-coming 1401 designs */
-			iReturn = TYPEUNKNOWN;	/*  Don't know or not there */
+			ret = TYPEUNKNOWN;	/*  Don't know or not there */
 	}
-	dev_dbg(&ced->interface->dev, "%s %d\n", __func__, iReturn);
+	dev_dbg(&ced->interface->dev, "%s %d\n", __func__, ret);
 	mutex_unlock(&ced->io_mutex);
 
-	return iReturn;
+	return ret;
 }
 
 /****************************************************************************