mirror of https://gitee.com/openkylin/linux.git
staging: ced1401: fix ced_start_self_test()
Rename camel case arguments and locals in function ced_start_self_test() Signed-off-by: Luca Ellero <luca.ellero@brickedbrain.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
abfc7692f1
commit
7fe89c5244
|
@ -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)
|
||||||
/* 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
|
Loading…
Reference in New Issue