summaryrefslogtreecommitdiffstats
path: root/drivers/usb/misc/usbtest.c
diff options
context:
space:
mode:
authorPeter Chen <peter.chen@freescale.com>2015-11-18 10:40:23 +0100
committerFelipe Balbi <balbi@ti.com>2015-12-15 16:12:41 +0100
commit4cee4fa5de70606e9eda1f605db1a681137cdaf8 (patch)
treea84a12aee370317d51477a25ef523a050e9a08f3 /drivers/usb/misc/usbtest.c
parentDocumentation: usb: gadget-testing: add description for depth of queue (diff)
downloadlinux-4cee4fa5de70606e9eda1f605db1a681137cdaf8.tar.xz
linux-4cee4fa5de70606e9eda1f605db1a681137cdaf8.zip
usb: misc: usbtest: improve the description for error message
Now the function of complicated_callback is not only used for iso transfer, improve the error message to reflect it. Signed-off-by: Peter Chen <peter.chen@freescale.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to '')
-rw-r--r--drivers/usb/misc/usbtest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/misc/usbtest.c b/drivers/usb/misc/usbtest.c
index 637f3f7cfce8..c1bd1eb548bb 100644
--- a/drivers/usb/misc/usbtest.c
+++ b/drivers/usb/misc/usbtest.c
@@ -1849,7 +1849,7 @@ static void complicated_callback(struct urb *urb)
goto done;
default:
dev_err(&ctx->dev->intf->dev,
- "iso resubmit err %d\n",
+ "resubmit err %d\n",
status);
/* FALLTHROUGH */
case -ENODEV: /* disconnected */
@@ -1863,7 +1863,7 @@ static void complicated_callback(struct urb *urb)
if (ctx->pending == 0) {
if (ctx->errors)
dev_err(&ctx->dev->intf->dev,
- "iso test, %lu errors out of %lu\n",
+ "during the test, %lu errors out of %lu\n",
ctx->errors, ctx->packet_count);
complete(&ctx->done);
}