Commit 7fe89c52 authored by Luca Ellero's avatar Luca Ellero Committed by Greg Kroah-Hartman

staging: ced1401: fix ced_start_self_test()

Rename camel case arguments and locals in function ced_start_self_test()
Signed-off-by: default avatarLuca Ellero <luca.ellero@brickedbrain.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent abfc7692
...@@ -1017,7 +1017,7 @@ int ced_state_of_1401(struct ced_data *ced) ...@@ -1017,7 +1017,7 @@ int ced_state_of_1401(struct ced_data *ced)
*****************************************************************************/ *****************************************************************************/
int ced_start_self_test(struct ced_data *ced) int ced_start_self_test(struct ced_data *ced)
{ {
int nGot; int got;
mutex_lock(&ced->io_mutex); mutex_lock(&ced->io_mutex);
dev_dbg(&ced->interface->dev, "%s\n", __func__); dev_dbg(&ced->interface->dev, "%s\n", __func__);
...@@ -1028,15 +1028,16 @@ int ced_start_self_test(struct ced_data *ced) ...@@ -1028,15 +1028,16 @@ int ced_start_self_test(struct ced_data *ced)
/* ced_read_write_cancel(pDeviceObject); */ /* ced_read_write_cancel(pDeviceObject); */
ced->dma_flag = MODE_CHAR; /* Clear DMA mode flags here */ ced->dma_flag = MODE_CHAR; /* Clear DMA mode flags here */
nGot = usb_control_msg(ced->udev, usb_rcvctrlpipe(ced->udev, 0), got = usb_control_msg(ced->udev, usb_rcvctrlpipe(ced->udev, 0),
DB_SELFTEST, (H_TO_D | VENDOR | DEVREQ), DB_SELFTEST, (H_TO_D | VENDOR | DEVREQ),
0, 0, NULL, 0, HZ); /* allow 1 second timeout */ 0, 0, NULL, 0, HZ); /* allow 1 second timeout */
ced->self_test_time = jiffies + HZ * 30; /* 30 seconds into the future */ ced->self_test_time = jiffies + HZ * 30; /* 30 seconds into the */
/* future */
mutex_unlock(&ced->io_mutex); mutex_unlock(&ced->io_mutex);
if (nGot < 0) if (got < 0)
dev_err(&ced->interface->dev, "%s: err=%d\n", __func__, nGot); dev_err(&ced->interface->dev, "%s: err=%d\n", __func__, got);
return nGot < 0 ? U14ERR_FAIL : U14ERR_NOERROR; return got < 0 ? U14ERR_FAIL : U14ERR_NOERROR;
} }
/**************************************************************************** /****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment