[PATCH 088/115] staging: ced1401: fix ced_get_out_buf_space()

Luca Ellero luca.ellero at brickedbrain.com
Mon Jun 30 10:02:55 UTC 2014


Rename camel case arguments and locals in function ced_get_out_buf_space()

Signed-off-by: Luca Ellero <luca.ellero at brickedbrain.com>
---
 drivers/staging/ced1401/ced_ioc.c |   14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/ced1401/ced_ioc.c b/drivers/staging/ced1401/ced_ioc.c
index b43d77b..464dbc3 100644
--- a/drivers/staging/ced1401/ced_ioc.c
+++ b/drivers/staging/ced1401/ced_ioc.c
@@ -585,13 +585,19 @@ int ced_line_count(struct ced_data *ced)
 *****************************************************************************/
 int ced_get_out_buf_space(struct ced_data *ced)
 {
-	int iReturn;
+	int ret;
+
 	mutex_lock(&ced->io_mutex);	/*  Protect disconnect from new i/o */
+
 	ced_send_chars(ced);		/*  send any buffered chars */
-	iReturn = (int)(OUTBUF_SZ - ced->num_output); /* no lock needed for single read */
-	dev_dbg(&ced->interface->dev, "%s: %d\n", __func__, iReturn);
+
+	 /* no lock needed for single read */
+	ret = (int)(OUTBUF_SZ - ced->num_output);
+
+	dev_dbg(&ced->interface->dev, "%s: %d\n", __func__, ret);
+
 	mutex_unlock(&ced->io_mutex);	/*  Protect disconnect from new i/o */
-	return iReturn;
+	return ret;
 }
 
 /****************************************************************************
-- 
1.7.10.4



More information about the devel mailing list