mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 07:51:16 -04:00
staging: comedi: usbduxsigma: remove unlink urb debug messages
Remove the dev_dbg() messages in all the unlink urb functions. The 'err' is always 0 (success) so these messages are just added noise. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ee13dd3129
commit
956ddbcd89
@@ -268,9 +268,6 @@ static int usbduxsub_unlink_InURBs(struct usbduxsub *usbduxsub_tmp)
|
||||
* cancelled. */
|
||||
usb_kill_urb(usbduxsub_tmp->urbIn[i]);
|
||||
}
|
||||
dev_dbg(&usbduxsub_tmp->interface->dev,
|
||||
"comedi: usbdux: unlinked InURB %d, err=%d\n",
|
||||
i, err);
|
||||
}
|
||||
}
|
||||
return err;
|
||||
@@ -481,10 +478,6 @@ static int usbduxsub_unlink_OutURBs(struct usbduxsub *usbduxsub_tmp)
|
||||
for (i = 0; i < usbduxsub_tmp->numOfOutBuffers; i++) {
|
||||
if (usbduxsub_tmp->urbOut[i])
|
||||
usb_kill_urb(usbduxsub_tmp->urbOut[i]);
|
||||
|
||||
dev_dbg(&usbduxsub_tmp->interface->dev,
|
||||
"comedi: usbdux: unlinked OutURB %d: res=%d\n",
|
||||
i, err);
|
||||
}
|
||||
}
|
||||
return err;
|
||||
@@ -1679,8 +1672,6 @@ static int usbduxsub_unlink_PwmURBs(struct usbduxsub *usbduxsub_tmp)
|
||||
if (usbduxsub_tmp && usbduxsub_tmp->urbPwm) {
|
||||
if (usbduxsub_tmp->urbPwm)
|
||||
usb_kill_urb(usbduxsub_tmp->urbPwm);
|
||||
dev_dbg(&usbduxsub_tmp->interface->dev,
|
||||
"comedi: unlinked PwmURB: res=%d\n", err);
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user