From: Tom Rini Date: Fri, 1 Sep 2017 20:17:17 +0000 (-0400) Subject: Revert "Merge git://git.denx.de/u-boot-video" X-Git-Tag: v2017.09-rc4~36 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9493d05a4156cddac3d257fea9e33c877d4bb10b;p=u-boot Revert "Merge git://git.denx.de/u-boot-video" This reverts commit 1d20170467b079642be96996dcd71db64c3c365c, reversing changes made to 6aee2ab68c362ace5a59f89a63abed82e0bf19e5. The mxc_ipuv3_fb.c changes introduce build failures on some targets. Signed-off-by: Tom Rini --- diff --git a/common/splash_source.c b/common/splash_source.c index e0defdebd6..a21ad62f82 100644 --- a/common/splash_source.c +++ b/common/splash_source.c @@ -317,11 +317,6 @@ static int splash_load_fit(struct splash_location *location, u32 bmp_load_addr) return res; img_header = (struct image_header *)bmp_load_addr; - if (image_get_magic(img_header) != FDT_MAGIC) { - printf("Could not find FDT magic\n"); - return -EINVAL; - } - fit_size = fdt_totalsize(img_header); /* Read in entire FIT */ diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3_fb.c index 88362290ef..0d0a0a97ff 100644 --- a/drivers/video/mxc_ipuv3_fb.c +++ b/drivers/video/mxc_ipuv3_fb.c @@ -13,7 +13,6 @@ #include #include -#include #include #include #include @@ -569,18 +568,8 @@ err0: void ipuv3_fb_shutdown(void) { - struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR; - struct ipu_stat *stat = (struct ipu_stat *)IPU_STAT; - u32 reg; int i; - - /* - * Check if IPU clock was enabled before. Won't access - * IPU registers if clock is not enabled. - */ - reg = readl(&mxc_ccm->CCGR3); - if ((reg & MXC_CCM_CCGR3_IPU1_IPU_MASK) == 0) - return; + struct ipu_stat *stat = (struct ipu_stat *)IPU_STAT; for (i = 0; i < ARRAY_SIZE(mxcfb_info); i++) { struct fb_info *fbi = mxcfb_info[i];