diff options
author | Simon Glass <sjg@chromium.org> | 2016-02-21 21:08:48 -0700 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2016-05-25 13:25:18 +0900 |
commit | 0c84358cb240953b467034a52fcc2f459ba4029b (patch) | |
tree | 2990adae0ac7ee6b85b302972d0efe6d9200dcff /drivers/video/exynos/Makefile | |
parent | 37ea446b9d7942c0deb5833fede6eb7cabd5bc6d (diff) | |
download | u-boot-0c84358cb240953b467034a52fcc2f459ba4029b.tar.gz u-boot-0c84358cb240953b467034a52fcc2f459ba4029b.tar.bz2 u-boot-0c84358cb240953b467034a52fcc2f459ba4029b.zip |
exynos: video: Combine LCD driver into one file
At present exynos_fimd.c is the controller and exynos_fb.c is the U-Boot
LCD interface. With driver model we want these in one file, so join them
in preparation.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'drivers/video/exynos/Makefile')
-rw-r--r-- | drivers/video/exynos/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/exynos/Makefile b/drivers/video/exynos/Makefile index d4bdf3230d..001a80fa04 100644 --- a/drivers/video/exynos/Makefile +++ b/drivers/video/exynos/Makefile @@ -6,7 +6,7 @@ # obj-$(CONFIG_EXYNOS_DP) += exynos_dp.o exynos_dp_lowlevel.o -obj-$(CONFIG_EXYNOS_FB) += exynos_fb.o exynos_fimd.o +obj-$(CONFIG_EXYNOS_FB) += exynos_fb.o obj-$(CONFIG_EXYNOS_MIPI_DSIM) += exynos_mipi_dsi.o exynos_mipi_dsi_common.o \ exynos_mipi_dsi_lowlevel.o obj-$(CONFIG_EXYNOS_PWM_BL) += exynos_pwm_bl.o |