From: Luca Ellero Date: Thu, 10 Jul 2014 09:02:17 +0000 (+0200) Subject: staging: ced1401: fix ced_stat_1401() X-Git-Tag: v3.17-rc1~123^2~994 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e62221f95e828ee90da811d402af25f2f03b4680;p=karo-tx-linux.git staging: ced1401: fix ced_stat_1401() Rename camel case arguments and locals in function ced_stat_1401() Signed-off-by: Luca Ellero Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ced1401/ced_ioc.c b/drivers/staging/ced1401/ced_ioc.c index 28697c05175c..414056f5d9bd 100644 --- a/drivers/staging/ced1401/ced_ioc.c +++ b/drivers/staging/ced1401/ced_ioc.c @@ -533,13 +533,13 @@ int ced_get_string(struct ced_data *ced, char __user *user, int n) *******************************************************************************/ int ced_stat_1401(struct ced_data *ced) { - int iReturn; + int ret; mutex_lock(&ced->io_mutex); /* Protect disconnect from new i/o */ ced_allowi(ced); /* make sure we allow pending chars */ ced_send_chars(ced); /* in both directions */ - iReturn = ced->num_input; /* no lock as single read */ + ret = ced->num_input; /* no lock as single read */ mutex_unlock(&ced->io_mutex); /* Protect disconnect from new i/o */ - return iReturn; + return ret; } /****************************************************************************