提交 59d3fa66 编写于 作者: B Brian Masney 提交者: Yang Yingliang

drm/bridge: analogix-anx78xx: silence -EPROBE_DEFER warnings

[ Upstream commit 2708e876272d89bbbff811d12834adbeef85f022 ]

Silence two warning messages that occur due to -EPROBE_DEFER errors to
help cleanup the system boot log.
Signed-off-by: NBrian Masney <masneyb@onstation.org>
Reviewed-by: NLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: NAndrzej Hajda <a.hajda@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190815004854.19860-4-masneyb@onstation.orgSigned-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
上级 c7e62f85
...@@ -725,7 +725,9 @@ static int anx78xx_init_pdata(struct anx78xx *anx78xx) ...@@ -725,7 +725,9 @@ static int anx78xx_init_pdata(struct anx78xx *anx78xx)
/* 1.0V digital core power regulator */ /* 1.0V digital core power regulator */
pdata->dvdd10 = devm_regulator_get(dev, "dvdd10"); pdata->dvdd10 = devm_regulator_get(dev, "dvdd10");
if (IS_ERR(pdata->dvdd10)) { if (IS_ERR(pdata->dvdd10)) {
DRM_ERROR("DVDD10 regulator not found\n"); if (PTR_ERR(pdata->dvdd10) != -EPROBE_DEFER)
DRM_ERROR("DVDD10 regulator not found\n");
return PTR_ERR(pdata->dvdd10); return PTR_ERR(pdata->dvdd10);
} }
...@@ -1341,7 +1343,9 @@ static int anx78xx_i2c_probe(struct i2c_client *client, ...@@ -1341,7 +1343,9 @@ static int anx78xx_i2c_probe(struct i2c_client *client,
err = anx78xx_init_pdata(anx78xx); err = anx78xx_init_pdata(anx78xx);
if (err) { if (err) {
DRM_ERROR("Failed to initialize pdata: %d\n", err); if (err != -EPROBE_DEFER)
DRM_ERROR("Failed to initialize pdata: %d\n", err);
return err; return err;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册