diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 076b7cfe2a1c..55e5f37dba9a 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -4618,8 +4618,8 @@ static struct gpio_desc *gpio_desc_table_match(struct device *dev, const char *c return desc; } - dev_warn(dev, "cannot find GPIO line %s, deferring\n", - p->key); + dev_dbg(dev, "cannot find GPIO line %s, deferring\n", + p->key); return ERR_PTR(-EPROBE_DEFER); } @@ -4633,8 +4633,8 @@ static struct gpio_desc *gpio_desc_table_match(struct device *dev, const char *c * consumer be probed again or let the Deferred * Probe infrastructure handle the error. */ - dev_warn(dev, "cannot find GPIO chip %s, deferring\n", - p->key); + dev_dbg(dev, "cannot find GPIO chip %s, deferring\n", + p->key); return ERR_PTR(-EPROBE_DEFER); }