summaryrefslogtreecommitdiff
path: root/drivers/video/exynos/exynos_fb.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-02-21 21:08:46 -0700
committerMinkyu Kang <mk7.kang@samsung.com>2016-05-25 13:25:17 +0900
commit652d15c06e65ea910bada28925b37483b2a1a0d6 (patch)
tree31654a02070a273ae2e9c219b46294246b132d6e /drivers/video/exynos/exynos_fb.c
parentb04135c998b88b0d7c1f21fef64219c508dfbcad (diff)
downloadu-boot-imx-652d15c06e65ea910bada28925b37483b2a1a0d6.zip
u-boot-imx-652d15c06e65ea910bada28925b37483b2a1a0d6.tar.gz
u-boot-imx-652d15c06e65ea910bada28925b37483b2a1a0d6.tar.bz2
exynos: video: Move struct exynos_platform_mipi_dsim into vidinfo
Put the pointer to this structure in struct vidinfo so that we can reference it without it being global. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Anatolij Gustschin <agust@denx.de> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'drivers/video/exynos/exynos_fb.c')
-rw-r--r--drivers/video/exynos/exynos_fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/exynos/exynos_fb.c b/drivers/video/exynos/exynos_fb.c
index abc6091..22b9723 100644
--- a/drivers/video/exynos/exynos_fb.c
+++ b/drivers/video/exynos/exynos_fb.c
@@ -128,7 +128,7 @@ static void lcd_panel_on(struct vidinfo *vid)
exynos_enable_ldo(1);
if (vid->mipi_enabled)
- exynos_mipi_dsi_init();
+ exynos_mipi_dsi_init(panel_info.dsim_platform_data_dt);
}
int exynos_lcd_early_init(const void *blob)