From 95b4eb6419854d36cc90ef9ea8091f3d7fb077c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lothar=20Wa=C3=9Fmann?= Date: Tue, 16 Jun 2020 09:01:04 +0200 Subject: [PATCH] pinctrl: print error message with dev_err() instead of dev_dbg() --- drivers/pinctrl/pinctrl-uclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2