]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
video: exynos_fb: Add the missing #else clause
authorAjay Kumar <ajaykumar.rs@samsung.com>
Thu, 4 Apr 2013 14:25:19 +0000 (10:25 -0400)
committerMinkyu Kang <mk7.kang@samsung.com>
Fri, 21 Jun 2013 00:14:15 +0000 (09:14 +0900)
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>
drivers/video/exynos_fimd.c

index 33599499ee253764fb3a8323e52f7af68977f3a8..7243ea335e305ece78ee2ecf705930ae329f9c1c 100644 (file)
@@ -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();