diff options
author | Wig Cheng <wig.cheng@technexion.com> | 2020-07-31 14:15:09 +0800 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2020-08-18 10:10:25 +0200 |
commit | d9d77a52098fc352011224263f4f4ffbdb1eceab (patch) | |
tree | 21994d8c68e79f0a144889964a29d12cb763699a /configs | |
parent | 6e861c35e7f4280096821f411682946841b95185 (diff) | |
download | u-boot-d9d77a52098fc352011224263f4f4ffbdb1eceab.zip u-boot-d9d77a52098fc352011224263f4f4ffbdb1eceab.tar.gz u-boot-d9d77a52098fc352011224263f4f4ffbdb1eceab.tar.bz2 |
configs: pico-imx6ul: convert DM_VIDEO
It's due to the warning messages issue after compiled:
===================== WARNING ======================
This board does not use CONFIG_DM_VIDEO Please update
the board to use CONFIG_DM_VIDEO before the v2019.07 release.
Failure to update by the deadline may result in board removal.
See doc/driver-model/migration.rst for more info.
====================================================
Enable DM_VIDEO can fix it on the stage of compilation.
Signed-off-by: Wig Cheng <wig.cheng@technexion.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/pico-imx6ul_defconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/pico-imx6ul_defconfig b/configs/pico-imx6ul_defconfig index 1db522a..79c8d44 100644 --- a/configs/pico-imx6ul_defconfig +++ b/configs/pico-imx6ul_defconfig @@ -74,4 +74,4 @@ CONFIG_USB_GADGET_MANUFACTURER="FSL" CONFIG_USB_GADGET_VENDOR_NUM=0x0525 CONFIG_USB_GADGET_PRODUCT_NUM=0xa4a5 CONFIG_CI_UDC=y -CONFIG_VIDEO=y +CONFIG_DM_VIDEO=y |