diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-12-19 16:15:34 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2014-01-13 12:19:55 +0200 |
commit | 40359a9b08cc51362a4dddfa2beb3b59e24e2b53 (patch) | |
tree | ca4a78abd6d4dc6c012247e665f3c916d6c139a4 /drivers/video/omap2/dss/hdmi4.c | |
parent | ab7bf423af05542db94021cf9dbf1b0bf86226b1 (diff) | |
download | blackbird-op-linux-40359a9b08cc51362a4dddfa2beb3b59e24e2b53.tar.gz blackbird-op-linux-40359a9b08cc51362a4dddfa2beb3b59e24e2b53.zip |
OMAPDSS: don't print errors on -EPROBE_DEFER
Nowadays it's normal to get -EPROBE_DEFER from, e.g., regulator_get. As
-EPROBE_DEFER is not really an error, and the driver will be probed fine
a bit later, printing an error message will just confuse the user.
This patch changes omapdss to print an error for regulator_gets only if
the error code is something else than -EPROBE_DEFER.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/hdmi4.c')
-rw-r--r-- | drivers/video/omap2/dss/hdmi4.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/hdmi4.c b/drivers/video/omap2/dss/hdmi4.c index c7fbe4d36041..4a74538f9ea5 100644 --- a/drivers/video/omap2/dss/hdmi4.c +++ b/drivers/video/omap2/dss/hdmi4.c @@ -95,7 +95,8 @@ static int hdmi_init_regulator(void) reg = devm_regulator_get(&hdmi.pdev->dev, "VDAC"); if (IS_ERR(reg)) { - DSSERR("can't get VDDA_HDMI_DAC regulator\n"); + if (PTR_ERR(reg) != -EPROBE_DEFER) + DSSERR("can't get VDDA_HDMI_DAC regulator\n"); return PTR_ERR(reg); } |