From mboxrd@z Thu Jan 1 00:00:00 1970 From: Donghwa Lee Date: Mon, 22 Apr 2013 10:00:35 +0900 Subject: [U-Boot] [PATCH] video: exynos_fb: Add the missing #else clause In-Reply-To: References: <1365085519-8203-1-git-send-email-ajaykumar.rs@samsung.com> Message-ID: <51748BB3.6010600@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de It looks good to me. Acked-by: Donghwa Lee Thank you, Donghwa Lee On Mon, Apr 22, 2013 at 02:03, Ajay kumar wrote: > ping. > > > On Thu, Apr 4, 2013 at 7:55 PM, Ajay Kumar > wrote: > > This patch fixes a bug introduced while adding DT support > to Exynos FIMD driver: > > commit c23f3157d69bbb6c044256870f745f195b12431e > Author: Ajay Kumar > > 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 > > --- > drivers/video/exynos_fimd.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/video/exynos_fimd.c b/drivers/video/exynos_fimd.c > index 3359949..7243ea3 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(); > > -- > 1.8.0 > > _______________________________________________ > U-Boot mailing list > U-Boot at lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > >