diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-21 19:44:59 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-01-21 20:42:36 -0700 |
commit | cd9c2070ea0712bd69e18236e8b52232fd27b02e (patch) | |
tree | 7724a3951261c66844780c96b0d3acb0e7adc765 /drivers/video/Makefile | |
parent | f563dc1d195aa7ca0ba1ce614031e9727fab1325 (diff) | |
download | u-boot-imx-cd9c2070ea0712bd69e18236e8b52232fd27b02e.zip u-boot-imx-cd9c2070ea0712bd69e18236e8b52232fd27b02e.tar.gz u-boot-imx-cd9c2070ea0712bd69e18236e8b52232fd27b02e.tar.bz2 |
video: panel: Add a simple panel driver
Most panels are very simple - they just have a power supply and a backlight.
Add a driver which supports this and implements the enable_backlight()
method.
Signed-off-by: Simon Glass <sjg@chromium.org>
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 d29280c..6658e96 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile @@ -8,7 +8,7 @@ ifdef CONFIG_DM obj-$(CONFIG_DISPLAY_PORT) += dp-uclass.o obj-$(CONFIG_DM_VIDEO) += backlight-uclass.o -obj-$(CONFIG_DM_VIDEO) += panel-uclass.o +obj-$(CONFIG_DM_VIDEO) += panel-uclass.o simple_panel.o obj-$(CONFIG_DM_VIDEO) += video-uclass.o vidconsole-uclass.o console_normal.o obj-$(CONFIG_DM_VIDEO) += video_bmp.o ifdef CONFIG_DM_VIDEO |