]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
exynos: video: Move driver files into their own directory
authorSimon Glass <sjg@chromium.org>
Mon, 22 Feb 2016 04:08:38 +0000 (21:08 -0700)
committerMinkyu Kang <mk7.kang@samsung.com>
Wed, 25 May 2016 04:25:17 +0000 (13:25 +0900)
Move all the exynos video drivers into one place for ease of maintenance.

Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
15 files changed:
drivers/video/Makefile
drivers/video/exynos/Makefile [new file with mode: 0644]
drivers/video/exynos/exynos_dp.c [moved from drivers/video/exynos_dp.c with 100% similarity]
drivers/video/exynos/exynos_dp_lowlevel.c [moved from drivers/video/exynos_dp_lowlevel.c with 100% similarity]
drivers/video/exynos/exynos_dp_lowlevel.h [moved from drivers/video/exynos_dp_lowlevel.h with 100% similarity]
drivers/video/exynos/exynos_fb.c [moved from drivers/video/exynos_fb.c with 100% similarity]
drivers/video/exynos/exynos_fb.h [moved from drivers/video/exynos_fb.h with 100% similarity]
drivers/video/exynos/exynos_fimd.c [moved from drivers/video/exynos_fimd.c with 100% similarity]
drivers/video/exynos/exynos_mipi_dsi.c [moved from drivers/video/exynos_mipi_dsi.c with 100% similarity]
drivers/video/exynos/exynos_mipi_dsi_common.c [moved from drivers/video/exynos_mipi_dsi_common.c with 100% similarity]
drivers/video/exynos/exynos_mipi_dsi_common.h [moved from drivers/video/exynos_mipi_dsi_common.h with 100% similarity]
drivers/video/exynos/exynos_mipi_dsi_lowlevel.c [moved from drivers/video/exynos_mipi_dsi_lowlevel.c with 100% similarity]
drivers/video/exynos/exynos_mipi_dsi_lowlevel.h [moved from drivers/video/exynos_mipi_dsi_lowlevel.h with 100% similarity]
drivers/video/exynos/exynos_pwm_bl.c [moved from drivers/video/exynos_pwm_bl.c with 100% similarity]
drivers/video/s6e8ax0.c

index 2fd0891e5dde9037444293a23d2e82481f17b128..3f045fe5781298d02007ab9f7698ed316c3c4bf7 100644 (file)
@@ -25,11 +25,6 @@ obj-$(CONFIG_ATI_RADEON_FB) += ati_radeon_fb.o videomodes.o
 obj-$(CONFIG_ATMEL_HLCD) += atmel_hlcdfb.o
 obj-$(CONFIG_ATMEL_LCD) += atmel_lcdfb.o
 obj-$(CONFIG_CFB_CONSOLE) += cfb_console.o
-obj-$(CONFIG_EXYNOS_DP) += exynos_dp.o exynos_dp_lowlevel.o
-obj-$(CONFIG_EXYNOS_FB) += exynos_fb.o exynos_fimd.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
 obj-$(CONFIG_FSL_DIU_FB) += fsl_diu_fb.o videomodes.o
 obj-$(CONFIG_FSL_DCU_FB) += fsl_dcu_fb.o videomodes.o
 obj-$(CONFIG_L5F31188) += l5f31188.o
@@ -68,6 +63,7 @@ obj-$(CONFIG_LG4573) += lg4573.o
 obj-$(CONFIG_AM335X_LCD) += am335x-fb.o
 
 obj-${CONFIG_VIDEO_TEGRA124} += tegra124/
+obj-${CONFIG_EXYNOS_FB} += exynos/
 obj-${CONFIG_VIDEO_ROCKCHIP} += rockchip/
 
 obj-y += bridge/
diff --git a/drivers/video/exynos/Makefile b/drivers/video/exynos/Makefile
new file mode 100644 (file)
index 0000000..d4bdf32
--- /dev/null
@@ -0,0 +1,12 @@
+#
+# (C) Copyright 2000-2007
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# SPDX-License-Identifier:     GPL-2.0+
+#
+
+obj-$(CONFIG_EXYNOS_DP) += exynos_dp.o exynos_dp_lowlevel.o
+obj-$(CONFIG_EXYNOS_FB) += exynos_fb.o exynos_fimd.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
index 84948177e239c04319f0af65e6d9d1e9945cd66c..1bd49eef80814fb936dc946139cbe9a20faa5d37 100644 (file)
@@ -9,8 +9,8 @@
 #include <common.h>
 #include <asm/arch/mipi_dsim.h>
 
-#include "exynos_mipi_dsi_lowlevel.h"
-#include "exynos_mipi_dsi_common.h"
+#include "exynos/exynos_mipi_dsi_lowlevel.h"
+#include "exynos/exynos_mipi_dsi_common.h"
 
 static void s6e8ax0_panel_cond(struct mipi_dsim_device *dsim_dev)
 {