Commit cfbd950d authored by Linus Walleij's avatar Linus Walleij Committed by Tomi Valkeinen

video: ARM CLCD: fix Vexpress regression

The CLCD does not come up on Versatile Express as it does not
(currently) have a syscon node for controlling the block apart
from the CLCD itself. Make sure the .init() function can bail
out without an error making it probe again.
Reported-by: default avatarAmit Pundir <amit.pundir@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Tested-by: default avatarAmit Pundir <amit.pundir@linaro.org>
Tested-by: default avatarNicolae Rosia <nicolae_rosia@mentor.com>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ti.com>
parent a909d3e6
...@@ -526,8 +526,8 @@ int versatile_clcd_init_panel(struct clcd_fb *fb, ...@@ -526,8 +526,8 @@ int versatile_clcd_init_panel(struct clcd_fb *fb,
np = of_find_matching_node_and_match(NULL, versatile_clcd_of_match, np = of_find_matching_node_and_match(NULL, versatile_clcd_of_match,
&clcd_id); &clcd_id);
if (!np) { if (!np) {
dev_err(dev, "no Versatile syscon node\n"); /* Vexpress does not have this */
return -ENODEV; return 0;
} }
versatile_clcd_type = (enum versatile_clcd)clcd_id->data; versatile_clcd_type = (enum versatile_clcd)clcd_id->data;
......
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