diff options
author | Johan Hovold <johan@kernel.org> | 2021-01-18 14:14:24 +0300 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2021-01-18 16:26:39 +0300 |
commit | 0765590f91a2b88dc3b946b954c47f774a051636 (patch) | |
tree | 1725facc8c64afd813dc30ec26c027cfecb76e0b /drivers/usb/serial/io_ti.c | |
parent | 66db94786e94fe2c060ab31bd8ed0308810ab610 (diff) | |
download | linux-0765590f91a2b88dc3b946b954c47f774a051636.tar.xz |
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/serial/io_ti.c')
-rw-r--r-- | drivers/usb/serial/io_ti.c | 2 |
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; } |