diff options
author | Simon Glass <sjg@chromium.org> | 2016-02-21 21:08:46 -0700 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2016-05-25 13:25:17 +0900 |
commit | 652d15c06e65ea910bada28925b37483b2a1a0d6 (patch) | |
tree | 31654a02070a273ae2e9c219b46294246b132d6e /include/exynos_lcd.h | |
parent | b04135c998b88b0d7c1f21fef64219c508dfbcad (diff) | |
download | u-boot-652d15c06e65ea910bada28925b37483b2a1a0d6.tar.gz |
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 'include/exynos_lcd.h')
-rw-r--r-- | include/exynos_lcd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exynos_lcd.h b/include/exynos_lcd.h index 1f6c6c75a2..0aa0fc71a3 100644 --- a/include/exynos_lcd.h +++ b/include/exynos_lcd.h @@ -76,6 +76,7 @@ typedef struct vidinfo { unsigned int dual_lcd_enabled; struct exynos_fb *fimd_ctrl; + struct exynos_platform_mipi_dsim *dsim_platform_data_dt; } vidinfo_t; #endif |