diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-18 19:52:17 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-20 19:10:15 -0700 |
commit | 83510766c90a52e58477267704fc5ca8f75c3dab (patch) | |
tree | 3ca2e70d5ccab5fc26d5b01c012c8d77112414fa /drivers/video/Makefile | |
parent | 6cbf5de7082fdee0bdbc3dd5fe7ac4c84cbf9f7d (diff) | |
download | u-boot-imx-83510766c90a52e58477267704fc5ca8f75c3dab.zip u-boot-imx-83510766c90a52e58477267704fc5ca8f75c3dab.tar.gz u-boot-imx-83510766c90a52e58477267704fc5ca8f75c3dab.tar.bz2 |
dm: video: Add a uclass for the text console
The existing LCD/video interface suffers from conflating the bitmap display
with text output on that display. As a result the implementation is more
complex than it needs to me.
We can support multiple text console drivers. Create a separate uclass to
support this, with its own API.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/Makefile b/drivers/video/Makefile index 7192013..e82f1ae 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile @@ -7,7 +7,7 @@ ifdef CONFIG_DM obj-$(CONFIG_DISPLAY_PORT) += dp-uclass.o -obj-$(CONFIG_DM_VIDEO) += video-uclass.o +obj-$(CONFIG_DM_VIDEO) += video-uclass.o vidconsole-uclass.o endif obj-$(CONFIG_ATI_RADEON_FB) += ati_radeon_fb.o videomodes.o |