mirror of
https://github.com/torvalds/linux.git
synced 2026-08-02 13:22:02 +02:00
staging: ced1401: fix ced_stat_1401()
Rename camel case arguments and locals in function ced_stat_1401() Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d8b622b3aa
commit
e62221f95e
|
|
@ -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;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user