Commit 1b256fa4 authored by Inki Dae's avatar Inki Dae Committed by Inki Dae

drm/exynos: dsi: modify a error type when getting a node failed

This patch makes it to return -EINVAL instead of -ENXIO
when getting a port or remote node failed.
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
Reviewed-by: default avatarJavier Martinez Canillas <javier@osg.samsung.com>
parent 082ca313
...@@ -1735,13 +1735,13 @@ static int exynos_dsi_parse_dt(struct exynos_dsi *dsi) ...@@ -1735,13 +1735,13 @@ static int exynos_dsi_parse_dt(struct exynos_dsi *dsi)
ep = of_graph_get_next_endpoint(node, NULL); ep = of_graph_get_next_endpoint(node, NULL);
if (!ep) { if (!ep) {
ret = -ENXIO; ret = -EINVAL;
goto end; goto end;
} }
dsi->bridge_node = of_graph_get_remote_port_parent(ep); dsi->bridge_node = of_graph_get_remote_port_parent(ep);
if (!dsi->bridge_node) { if (!dsi->bridge_node) {
ret = -ENXIO; ret = -EINVAL;
goto end; goto end;
} }
end: end:
......
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