diff options
author | Igor Opaniuk <igor.opaniuk@toradex.com> | 2019-06-19 11:47:08 +0300 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2019-07-29 00:11:54 +0200 |
commit | 9de5eb23dc7972b9e382327b9a485335b24d3b4a (patch) | |
tree | c5fa1fc7ab25df135c268682b6bc0ecde2172382 /arch/arm | |
parent | 2b600bb83378f67920c9982e7dadd2f062b51cf6 (diff) |
colibri-imx6ull: support building with DM_VIDEO=y
1. This fixes linking issues when building with DM_VIDEO enabled mxsfb
driver.
2. Provide proper defines for both VIDEO=y and DM_VIDEO=y.
Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com>
Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-imx/mx6/soc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mx6/soc.c b/arch/arm/mach-imx/mx6/soc.c index 4084ab7672..075d2467ce 100644 --- a/arch/arm/mach-imx/mx6/soc.c +++ b/arch/arm/mach-imx/mx6/soc.c @@ -554,7 +554,7 @@ const struct boot_mode soc_boot_modes[] = { void reset_misc(void) { #ifndef CONFIG_SPL_BUILD -#ifdef CONFIG_VIDEO_MXS +#if defined(CONFIG_VIDEO_MXS) && !defined(CONFIG_DM_VIDEO) lcdif_power_down(); #endif #endif |