diff options
Diffstat (limited to 'arch/arm/imx-common/cpu.c')
-rw-r--r-- | arch/arm/imx-common/cpu.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c index 0a7d476..e097a29 100644 --- a/arch/arm/imx-common/cpu.c +++ b/arch/arm/imx-common/cpu.c @@ -20,6 +20,10 @@ #include <thermal.h> #include <sata.h> +#ifdef CONFIG_VIDEO_GIS +#include <gis.h> +#endif + #ifdef CONFIG_FSL_ESDHC #include <fsl_esdhc.h> #endif @@ -237,6 +241,10 @@ void arch_preboot_os(void) /* disable video before launching O/S */ ipuv3_fb_shutdown(); #endif +#ifdef CONFIG_VIDEO_GIS + /* Entry for GIS */ + mxc_disable_gis(); +#endif } void set_chipselect_size(int const cs_size) |