Commit 3c7d5637 authored by Sebastian Hesselbarth's avatar Sebastian Hesselbarth Committed by Linus Walleij

pinctrl: mvebu: silence WARN to dev_warn

Pinctrl will WARN on missing DT resources, which is a little bit too
noisy. Use dev_warn with FW_BUG instead.
Signed-off-by: default avatarSebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 6aced33f
...@@ -832,7 +832,8 @@ static int dove_pinctrl_probe(struct platform_device *pdev) ...@@ -832,7 +832,8 @@ static int dove_pinctrl_probe(struct platform_device *pdev)
} }
/* Warn on any missing DT resource */ /* Warn on any missing DT resource */
WARN(fb_res.start, FW_BUG "Missing pinctrl regs in DTB. Please update your firmware.\n"); if (fb_res.start)
dev_warn(&pdev->dev, FW_BUG "Missing pinctrl regs in DTB. Please update your firmware.\n");
return mvebu_pinctrl_probe(pdev); return mvebu_pinctrl_probe(pdev);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment