summaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorJohan Hovold <johan@kernel.org>2021-01-18 12:14:24 +0100
committerJohan Hovold <johan@kernel.org>2021-01-18 14:26:39 +0100
commit0765590f91a2b88dc3b946b954c47f774a051636 (patch)
tree1725facc8c64afd813dc30ec26c027cfecb76e0b /drivers/usb
parent66db94786e94fe2c060ab31bd8ed0308810ab610 (diff)
downloadlinux-stable-0765590f91a2b88dc3b946b954c47f774a051636.tar.gz
linux-stable-0765590f91a2b88dc3b946b954c47f774a051636.tar.bz2
linux-stable-0765590f91a2b88dc3b946b954c47f774a051636.zip
USB: serial: io_ti: fix a debug-message copy-paste error
Fix a copy-paste error in the ti_vread_sync() debug message. Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/serial/io_ti.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c
index 0c4062698603..0bbfa47e04b7 100644
--- a/drivers/usb/serial/io_ti.c
+++ b/drivers/usb/serial/io_ti.c
@@ -266,7 +266,7 @@ static int ti_vread_sync(struct usb_device *dev, __u8 request,
if (status < 0)
return status;
if (status != size) {
- dev_dbg(&dev->dev, "%s - wanted to write %d, but only wrote %d\n",
+ dev_dbg(&dev->dev, "%s - wanted to read %d, but only read %d\n",
__func__, size, status);
return -ECOMM;
}