aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl/devicetree.c
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2014-01-30 18:57:20 +0000
committerLinus Walleij <linus.walleij@linaro.org>2014-02-24 10:44:54 +0100
commit5d88dceac736a779fdf6208bbd0a06e81fe25300 (patch)
tree5ee204bd34fb93087d045bf27ed55f01b1cfaf58 /drivers/pinctrl/devicetree.c
parentpinctrl: sh-pfc: r8a7790: Break out USB0 OVC/VBUS (diff)
downloadlinux-dev-5d88dceac736a779fdf6208bbd0a06e81fe25300.tar.xz
linux-dev-5d88dceac736a779fdf6208bbd0a06e81fe25300.zip
pinctrl: Quiet logging about missing DT nodes when not using DT
On systems which were not booted using DT it is entirely unsurprising that device nodes don't have any DT information and this is going to happen for every single device in the system. Make pinctrl be less chatty about this situation by only logging in the case where we have DT. Signed-off-by: Mark Brown <broonie@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/devicetree.c')
-rw-r--r--drivers/pinctrl/devicetree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/pinctrl/devicetree.c b/drivers/pinctrl/devicetree.c
index 340fb4e6c600..eda13de2e7c0 100644
--- a/drivers/pinctrl/devicetree.c
+++ b/drivers/pinctrl/devicetree.c
@@ -186,7 +186,9 @@ int pinctrl_dt_to_map(struct pinctrl *p)
/* CONFIG_OF enabled, p->dev not instantiated from DT */
if (!np) {
- dev_dbg(p->dev, "no of_node; not parsing pinctrl DT\n");
+ if (of_have_populated_dt())
+ dev_dbg(p->dev,
+ "no of_node; not parsing pinctrl DT\n");
return 0;
}