summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King2017-11-22 20:39:53 +0100
committerGreg Kroah-Hartman2017-11-28 15:08:43 +0100
commit81d8a8eb0a975e151cdbd14f90516a8147d35ee2 (patch)
tree8532aad616748c9d8bba6c3e9e137dae2cd12c2e
parentUSB: host: whci: remove redundant variable t (diff)
downloadkernel-qcow2-linux-81d8a8eb0a975e151cdbd14f90516a8147d35ee2.tar.gz
kernel-qcow2-linux-81d8a8eb0a975e151cdbd14f90516a8147d35ee2.tar.xz
kernel-qcow2-linux-81d8a8eb0a975e151cdbd14f90516a8147d35ee2.zip
USB: usbip: fix spelling mistake: "synchronuously" -> "synchronously"
Trivial fix to spelling mistake in error message text Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/usbip/vhci_rx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/usbip/vhci_rx.c b/drivers/usb/usbip/vhci_rx.c
index 90577e8b2282..a9813f1d507d 100644
--- a/drivers/usb/usbip/vhci_rx.c
+++ b/drivers/usb/usbip/vhci_rx.c
@@ -31,7 +31,7 @@ struct urb *pickup_urb_and_free_priv(struct vhci_device *vdev, __u32 seqnum)
/* fall through */
case -ECONNRESET:
dev_info(&urb->dev->dev,
- "urb %p was unlinked %ssynchronuously.\n", urb,
+ "urb %p was unlinked %ssynchronously.\n", urb,
status == -ENOENT ? "" : "a");
break;
case -EINPROGRESS: