]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
USB: serial: cp210x: add gpio-configuration debug printk
authorJohan Hovold <johan@kernel.org>
Fri, 9 Apr 2021 15:52:16 +0000 (17:52 +0200)
committerJohan Hovold <johan@kernel.org>
Mon, 12 Apr 2021 09:58:42 +0000 (11:58 +0200)
Add a debug printk to dump the GPIO configuration stored in EEPROM
during probe.

Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
drivers/usb/serial/cp210x.c

index ceb3a656a0756d59aa595bf22d47cd4ad5d679a4..ee595d1bea0a9f61bb5914be8834294d9a82b4ea 100644 (file)
@@ -1543,10 +1543,16 @@ static int cp210x_gpio_init_valid_mask(struct gpio_chip *gc,
 {
        struct usb_serial *serial = gpiochip_get_data(gc);
        struct cp210x_serial_private *priv = usb_get_serial_data(serial);
+       struct device *dev = &serial->interface->dev;
        unsigned long altfunc_mask = priv->gpio_altfunc;
 
        bitmap_complement(valid_mask, &altfunc_mask, ngpios);
 
+       if (bitmap_empty(valid_mask, ngpios))
+               dev_dbg(dev, "no pin configured for GPIO\n");
+       else
+               dev_dbg(dev, "GPIO.%*pbl configured for GPIO\n", ngpios,
+                               valid_mask);
        return 0;
 }