diff options
author | Anatolij Gustschin <agust@denx.de> | 2020-10-18 20:32:35 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2020-10-26 20:55:29 +0100 |
commit | 8c9940d5ece509ce681bf1b6481832e652526820 (patch) | |
tree | 09615c5608bfe5ec463d221f5bfbc0e64c754062 /common/stdio.c | |
parent | 23106209604be000940d7259f2f4d852451f573d (diff) | |
download | u-boot-8c9940d5ece509ce681bf1b6481832e652526820.tar.gz |
eb_cpu5282: fix CONFIG_DM_VIDEO build warnings
Remove CONFIG_VIDEO dependency to fix board removal warnings.
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Jens Scharsig <esw@bus-elektronik.de>
Diffstat (limited to 'common/stdio.c')
-rw-r--r-- | common/stdio.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/stdio.c b/common/stdio.c index 84c36a735c0..a15f30804bf 100644 --- a/common/stdio.c +++ b/common/stdio.c @@ -356,7 +356,9 @@ int stdio_add_devices(void) } else { if (IS_ENABLED(CONFIG_LCD)) drv_lcd_init(); - if (IS_ENABLED(CONFIG_VIDEO) || IS_ENABLED(CONFIG_CFB_CONSOLE)) + if (IS_ENABLED(CONFIG_VIDEO) || + IS_ENABLED(CONFIG_CFB_CONSOLE) || + IS_ENABLED(CONFIG_VIDEO_VCXK)) drv_video_init(); } |