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

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
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -1017,7 +1017,7 @@ int ced_state_of_1401(struct ced_data *ced)
*****************************************************************************/
int ced_start_self_test(struct ced_data *ced)
{
	int nGot;
	int got;
	mutex_lock(&ced->io_mutex);
	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->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),
			       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);
	if (nGot < 0)
		dev_err(&ced->interface->dev, "%s: err=%d\n", __func__, nGot);
	return nGot < 0 ? U14ERR_FAIL : U14ERR_NOERROR;
	if (got < 0)
		dev_err(&ced->interface->dev, "%s: err=%d\n", __func__, got);
	return got < 0 ? U14ERR_FAIL : U14ERR_NOERROR;
}

/****************************************************************************