Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Luca Ellero and committed by
Greg Kroah-Hartman
7bbddb60 f1d513bb

+3 -3
+3 -3
drivers/staging/ced1401/ced_ioc.c
··· 1354 1354 ****************************************************************************/ 1355 1355 int ced_dbg_stop_loop(struct ced_data *ced) 1356 1356 { 1357 - int iReturn; 1357 + int ret; 1358 1358 unsigned int uState, uErr; 1359 1359 1360 1360 mutex_lock(&ced->io_mutex); 1361 1361 dev_dbg(&ced->interface->dev, "%s\n", __func__); 1362 - iReturn = ced_get_state(ced, &uState, &uErr); 1362 + ret = ced_get_state(ced, &uState, &uErr); 1363 1363 mutex_unlock(&ced->io_mutex); 1364 1364 1365 - return iReturn; 1365 + return ret; 1366 1366 } 1367 1367 1368 1368 /****************************************************************************