projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
625e63e
)
drm/exynos/dsi: fix bridge_node DT parsing
author
Andrzej Hajda
<a.hajda@samsung.com>
Thu, 13 Apr 2017 07:19:50 +0000
(16:19 +0900)
committer
Inki Dae
<inki.dae@samsung.com>
Thu, 1 Jun 2017 07:21:36 +0000
(16:21 +0900)
DSIM uses MIC bridge which is between DECON and DSIM, so the driver
should expect bridge node on input side.
Fixes:
86418f9
("drm: convert drivers to use of_graph_get_remote_node")
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos_drm_dsi.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/exynos/exynos_drm_dsi.c
b/drivers/gpu/drm/exynos/exynos_drm_dsi.c
index d404de86d5f9de1d5fe07f856fe4a10fafdefd91..a11b79596e2f8d483c113b78d1df7568d59a48d4 100644
(file)
--- a/
drivers/gpu/drm/exynos/exynos_drm_dsi.c
+++ b/
drivers/gpu/drm/exynos/exynos_drm_dsi.c
@@
-1650,7
+1650,7
@@
static int exynos_dsi_parse_dt(struct exynos_dsi *dsi)
if (ret < 0)
return ret;
- dsi->bridge_node = of_graph_get_remote_node(node, DSI_PORT_
OUT
, 0);
+ dsi->bridge_node = of_graph_get_remote_node(node, DSI_PORT_
IN
, 0);
if (!dsi->bridge_node)
return -EINVAL;