diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-18 19:52:22 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-20 19:10:15 -0700 |
commit | b01c7923e3923680d9389bcd7cf5ad2e5f083e30 (patch) | |
tree | d451f873d2293677c04d160c2dfd7cbbda158a70 /drivers/video/Makefile | |
parent | 5a54194515caa4f4183dc9086938456612749573 (diff) | |
download | u-boot-imx-b01c7923e3923680d9389bcd7cf5ad2e5f083e30.zip u-boot-imx-b01c7923e3923680d9389bcd7cf5ad2e5f083e30.tar.gz u-boot-imx-b01c7923e3923680d9389bcd7cf5ad2e5f083e30.tar.bz2 |
dm: video: Implement the bmp command for driver model
This command can use the bitmap display code in the uclass. This is similar
to the code in lcd.c and cfb_console.c. These other copies will go away when
all boards are converted to use driver model for video.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'drivers/video/Makefile')
-rw-r--r-- | drivers/video/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/Makefile b/drivers/video/Makefile index 8f26d1d..ee04629 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile @@ -8,6 +8,7 @@ ifdef CONFIG_DM obj-$(CONFIG_DISPLAY_PORT) += dp-uclass.o obj-$(CONFIG_DM_VIDEO) += video-uclass.o vidconsole-uclass.o console_normal.o +obj-$(CONFIG_DM_VIDEO) += video_bmp.o obj-$(CONFIG_VIDEO_ROTATION) += console_rotate.o endif |