summaryrefslogtreecommitdiff
path: root/drivers/video/ihs_video_out.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-01-31 16:07:37 -0500
committerTom Rini <trini@konsulko.com>2019-01-31 16:07:37 -0500
commitdb4a29993d207fec33c07de8b8cb8a3fd22c9e6c (patch)
treec5a0827a5cc8b053e9095d1ee8635795d588b449 /drivers/video/ihs_video_out.c
parentab0ec15f77b5692c06fac024f34a90ab4752b41a (diff)
parent6df07d854b9ee81d31fafcd83724bed7fb1fd6d7 (diff)
Merge tag 'video-updates-for-2019.04-rc1' of git://git.denx.de/u-boot-video
- ihs and imx driver fixes - relax EDID validation checks for 0 hsync/vsync pulse width (support some quirky displays)
Diffstat (limited to 'drivers/video/ihs_video_out.c')
-rw-r--r--drivers/video/ihs_video_out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/video/ihs_video_out.c b/drivers/video/ihs_video_out.c
index 5cdf17aec1..0af7c2bf44 100644
--- a/drivers/video/ihs_video_out.c
+++ b/drivers/video/ihs_video_out.c
@@ -238,8 +238,8 @@ int ihs_video_out_probe(struct udevice *dev)
int res;
res = regmap_init_mem(dev_ofnode(dev), &priv->map);
- if (!res) {
- debug("%s: Could initialize regmap (err = %d)\n", dev->name,
+ if (res) {
+ debug("%s: Could not initialize regmap (err = %d)\n", dev->name,
res);
return res;
}
@@ -322,7 +322,7 @@ int ihs_video_out_probe(struct udevice *dev)
}
res = display_enable(priv->video_tx, 8, &timing);
- if (res) {
+ if (res && res != -EIO) { /* Ignore missing DP sink error */
debug("%s: Could not enable the display (err = %d)\n",
dev->name, res);
return res;