Commit 125a77fc authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: usbduxsigma: tidy up receive_dux_commands()

Rename the variable used for the private data pointer.

Remove dev_err() when usb_blk_msg() fails, it's just added noise.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 502f9a3f
...@@ -740,32 +740,29 @@ static int send_dux_commands(struct usbduxsigma_private *devpriv, ...@@ -740,32 +740,29 @@ static int send_dux_commands(struct usbduxsigma_private *devpriv,
&nsent, BULK_TIMEOUT); &nsent, BULK_TIMEOUT);
} }
static int receive_dux_commands(struct usbduxsigma_private *this_usbduxsub, static int receive_dux_commands(struct usbduxsigma_private *devpriv,
int command) int command)
{ {
int result = (-EFAULT);
int nrec; int nrec;
int ret;
int i; int i;
for (i = 0; i < RETRIES; i++) { for (i = 0; i < RETRIES; i++) {
result = usb_bulk_msg(this_usbduxsub->usbdev, ret = usb_bulk_msg(devpriv->usbdev,
usb_rcvbulkpipe(this_usbduxsub->usbdev, usb_rcvbulkpipe(devpriv->usbdev,
COMMAND_IN_EP), COMMAND_IN_EP),
this_usbduxsub->insnBuffer, SIZEINSNBUF, devpriv->insnBuffer, SIZEINSNBUF,
&nrec, BULK_TIMEOUT); &nrec, BULK_TIMEOUT);
if (result < 0) { if (ret < 0)
dev_err(&this_usbduxsub->interface->dev, "comedi%d: " return ret;
"insn: USB error %d "
"while receiving DUX command" if (devpriv->insnBuffer[0] == command)
"\n", this_usbduxsub->comedidev->minor, return 0;
result);
return result;
}
if (this_usbduxsub->insnBuffer[0] == command)
return result;
} }
/* this is only reached if the data has been requested a couple of /*
* times */ * This is only reached if the data has been requested a
* couple of times and the command was not received.
*/
return -EFAULT; return -EFAULT;
} }
......
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