ihs_video_out: Fix error handling
authorMario Six <mario.six@gdsys.cc>
Mon, 28 Jan 2019 08:50:58 +0000 (09:50 +0100)
committerAnatolij Gustschin <agust@denx.de>
Mon, 28 Jan 2019 20:29:25 +0000 (21:29 +0100)
The ihs_video_out driver's error handling is incorrect in two places
(one is a missing negation, and in one place a error should be ignored).

Fix these two instances.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
drivers/video/ihs_video_out.c

index 5cdf17aec144de6587f94b891b5c275018fd5bbc..0af7c2bf44a964cad3c38ea0d1d6c81f2fd8ebc4 100644 (file)
@@ -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;