diff mbox series

[1/6] usb: hso: correct debug message

Message ID 20190606125548.18315-1-oneukum@suse.com
State Changes Requested
Delegated to: David Miller
Headers show
Series [1/6] usb: hso: correct debug message | expand

Commit Message

Oliver Neukum June 6, 2019, 12:55 p.m. UTC
If you do not find the OUT endpoint, you should say so,
rather than copy the error message for the IN endpoint.
Presumably a copy and paste error.

Signed-off-by: Oliver Neukum <oneukum@suse.com>
---
 drivers/net/usb/hso.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller June 6, 2019, 6:18 p.m. UTC | #1
Oliver, can you please start providing proper header postings with
your patch series that explains at a high level what the patch series
is doing, how it is doing it, and why it is doing it that way?

Also, you need to tag your Subject lines properly with what tree
you are targetting with these changes.  Either net or net-next.

Thank you.
diff mbox series

Patch

diff --git a/drivers/net/usb/hso.c b/drivers/net/usb/hso.c
index d6916f787fce..6a0ecddff310 100644
--- a/drivers/net/usb/hso.c
+++ b/drivers/net/usb/hso.c
@@ -2663,7 +2663,7 @@  static struct hso_device *hso_create_bulk_serial_device(
 	if (!
 	    (serial->out_endp =
 	     hso_get_ep(interface, USB_ENDPOINT_XFER_BULK, USB_DIR_OUT))) {
-		dev_err(&interface->dev, "Failed to find BULK IN ep\n");
+		dev_err(&interface->dev, "Failed to find BULK OUT ep\n");
 		goto exit2;
 	}