diff options
author | Ye Li <ye.li@nxp.com> | 2017-04-06 10:30:54 +0800 |
---|---|---|
committer | Ye Li <ye.li@nxp.com> | 2017-04-06 10:30:54 +0800 |
commit | b6fa97917c085fbbd22b16765afa6f68bdc4234d (patch) | |
tree | c26008dd9eff61ae269332481de18ec3ae2b8200 /include/configs/mx6slevk.h | |
parent | d459c153296ff16ec49f521713ffc899f301901a (diff) | |
download | u-boot-imx-b6fa97917c085fbbd22b16765afa6f68bdc4234d.zip u-boot-imx-b6fa97917c085fbbd22b16765afa6f68bdc4234d.tar.gz u-boot-imx-b6fa97917c085fbbd22b16765afa6f68bdc4234d.tar.bz2 |
MLK-14628 epdc: Fix configs issue
In Kconfig, the CONFIG_MXC_EPDC depends on CONFIG_LCD.
We can't only set the CONFIG_MXC_EPDC in defconfig and set CONFIG_LCD in header file.
This will cause the both two configs are not selected. So in fact the epdc codes
are not compiled.
Signed-off-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'include/configs/mx6slevk.h')
-rw-r--r-- | include/configs/mx6slevk.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h index 19f6557..5d9539b 100644 --- a/include/configs/mx6slevk.h +++ b/include/configs/mx6slevk.h @@ -221,20 +221,16 @@ /* * SPLASH SCREEN Configs */ -#ifdef CONFIG_SPLASH_SCREEN +#ifdef CONFIG_MXC_EPDC /* * Framebuffer and LCD */ #define CONFIG_CMD_BMP - #define CONFIG_MXC_EPDC 1 - #define CONFIG_LCD - #define CONFIG_SYS_CONSOLE_IS_IN_ENV -#ifdef CONFIG_MXC_EPDC + #define CONFIG_SPLASH_SCREEN #undef LCD_TEST_PATTERN #define LCD_BPP LCD_MONOCHROME #define CONFIG_WAVEFORM_BUF_SIZE 0x200000 -#endif #endif /* CONFIG_SPLASH_SCREEN */ #if defined(CONFIG_FASTBOOT) |