summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAjay Kumar <ajaykumar.rs@samsung.com>2013-04-04 10:25:19 -0400
committerMinkyu Kang <mk7.kang@samsung.com>2013-06-21 09:14:15 +0900
commit9169543d1e3361313041184d2a66fe08ce0fcb93 (patch)
treeb23eef9808d804d1e6be87c145cc28e936096c89
parentb2f794125e17b66c7252bc285d030dadd68906b2 (diff)
downloadtalos-obmc-uboot-9169543d1e3361313041184d2a66fe08ce0fcb93.tar.gz
talos-obmc-uboot-9169543d1e3361313041184d2a66fe08ce0fcb93.zip
video: exynos_fb: Add the missing #else clause
This patch fixes a bug introduced while adding DT support to Exynos FIMD driver: commit c23f3157d69bbb6c044256870f745f195b12431e Author: Ajay Kumar <ajaykumar.rs@samsung.com> Date: Thu Feb 21 23:53:01 2013 +0000 video: exynos_fb: add DT support for FIMD driver Even though this part of code was missing, things were working fine on Exynos5250 because, samsung_get_base_fimd() used to give the correct base address for Exynos5250 FIMD. Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com> Acked-by: Donghwa Lee <dh09.lee@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
-rw-r--r--drivers/video/exynos_fimd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/exynos_fimd.c b/drivers/video/exynos_fimd.c
index 33599499ee..7243ea335e 100644
--- a/drivers/video/exynos_fimd.c
+++ b/drivers/video/exynos_fimd.c
@@ -280,8 +280,9 @@ void exynos_fimd_lcd_init(vidinfo_t *vid)
node, "reg");
if (fimd_ctrl == NULL)
debug("Can't get the FIMD base address\n");
-#endif
+#else
fimd_ctrl = (struct exynos_fb *)samsung_get_base_fimd();
+#endif
offset = exynos_fimd_get_base_offset();
OpenPOWER on IntegriCloud