From: Lothar Waßmann Date: Tue, 16 Jun 2020 07:01:04 +0000 (+0200) Subject: pinctrl: print error message with dev_err() instead of dev_dbg() X-Git-Tag: KARO_TX6-2020-09-18~7 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=95b4eb6419854d36cc90ef9ea8091f3d7fb077c6 pinctrl: print error message with dev_err() instead of dev_dbg() --- diff --git a/drivers/pinctrl/pinctrl-uclass.c b/drivers/pinctrl/pinctrl-uclass.c index d96c201e83..4b250e14a9 100644 --- a/drivers/pinctrl/pinctrl-uclass.c +++ b/drivers/pinctrl/pinctrl-uclass.c @@ -217,7 +217,7 @@ static int pinctrl_post_bind(struct udevice *dev) const struct pinctrl_ops *ops = pinctrl_get_ops(dev); if (!ops) { - dev_dbg(dev, "ops is not set. Do not bind.\n"); + dev_err(dev, "ops is not set. Do not bind.\n"); return -EINVAL; }