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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Peter Chen 2015-11-18 17:40:23 +08:00 committed by Greg Kroah-Hartman
parent 144e38c6be
commit c7c7806700
1 changed files with 2 additions and 2 deletions

View File

@ -1849,7 +1849,7 @@ static void complicated_callback(struct urb *urb)
goto done; goto done;
default: default:
dev_err(&ctx->dev->intf->dev, dev_err(&ctx->dev->intf->dev,
"iso resubmit err %d\n", "resubmit err %d\n",
status); status);
/* FALLTHROUGH */ /* FALLTHROUGH */
case -ENODEV: /* disconnected */ case -ENODEV: /* disconnected */
@ -1863,7 +1863,7 @@ static void complicated_callback(struct urb *urb)
if (ctx->pending == 0) { if (ctx->pending == 0) {
if (ctx->errors) if (ctx->errors)
dev_err(&ctx->dev->intf->dev, 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); ctx->errors, ctx->packet_count);
complete(&ctx->done); complete(&ctx->done);
} }