]> git.karo-electronics.de Git - linux-beck.git/commitdiff
USB: serial: ch341: add debug output for chip version
authorAidan Thornton <makosoft@gmail.com>
Sat, 22 Oct 2016 21:02:26 +0000 (22:02 +0100)
committerJohan Hovold <johan@kernel.org>
Mon, 24 Oct 2016 15:41:30 +0000 (17:41 +0200)
Will probably be helpful if there are any more compatibility issues.

Signed-off-by: Aidan Thornton <makosoft@gmail.com>
Reviewed-by: Grigori Goronzy <greg@chown.ath.cx>
Signed-off-by: Johan Hovold <johan@kernel.org>
drivers/usb/serial/ch341.c

index af9edbedfd28b50e531bac199fb55682f244cfc0..2597b83a8ae254d0eff28b2d2d124ff51c196248 100644 (file)
@@ -212,6 +212,7 @@ static int ch341_configure(struct usb_device *dev, struct ch341_private *priv)
        r = ch341_control_in(dev, CH341_REQ_READ_VERSION, 0, 0, buffer, size);
        if (r < 0)
                goto out;
+       dev_dbg(&dev->dev, "Chip version: 0x%02x\n", buffer[0]);
 
        r = ch341_control_out(dev, CH341_REQ_SERIAL_INIT, 0, 0);
        if (r < 0)