diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2016-02-03 13:42:51 +0100 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2016-02-15 15:25:21 +0100 |
commit | e7ad6606c000bf71df1ed0dcfca91227ce375db3 (patch) | |
tree | d6ac1d323e1471514ef8fa42f9bfc9604510383d /drivers | |
parent | drm/exynos: mic: make all functions static (diff) | |
download | linux-e7ad6606c000bf71df1ed0dcfca91227ce375db3.tar.xz linux-e7ad6606c000bf71df1ed0dcfca91227ce375db3.zip |
drm/exynos: dsi: restore support for drm bridge
This patch fixes issue introduced by commit
cf67cc9a29ac19c98bc4fa0e6d14b0c1f592d322 ("drm/exynos: remove struct
exynos_drm_display"), which removed assigning of drm bridge to drm
encoder. Lack of it caused that no bridge callbacks were called on
encoder enable/disable actions.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_dsi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_dsi.c b/drivers/gpu/drm/exynos/exynos_drm_dsi.c index e977a81af2e6..26e81d191f56 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_dsi.c +++ b/drivers/gpu/drm/exynos/exynos_drm_dsi.c @@ -1782,6 +1782,7 @@ static int exynos_dsi_bind(struct device *dev, struct device *master, bridge = of_drm_find_bridge(dsi->bridge_node); if (bridge) { + encoder->bridge = bridge; drm_bridge_attach(drm_dev, bridge); } |