diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:31:31 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:57 -0600 |
commit | a2955579e737acf24ad76da4f9d42066ac9d135b (patch) | |
tree | 1930da2fe39d076c52a79a96064f5f97b59176ed /drivers/video/exynos | |
parent | 12a8b0dcaec239c53bc69b3df0abc0f4d5454309 (diff) | |
download | u-boot-a2955579e737acf24ad76da4f9d42066ac9d135b.tar.gz u-boot-a2955579e737acf24ad76da4f9d42066ac9d135b.tar.bz2 u-boot-a2955579e737acf24ad76da4f9d42066ac9d135b.zip |
video: Remove <common.h> and add needed includes
Remove <common.h> from this driver directory and when needed
add missing include files directly.
Reviewed-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/video/exynos')
-rw-r--r-- | drivers/video/exynos/exynos_dp.c | 1 | ||||
-rw-r--r-- | drivers/video/exynos/exynos_dp_lowlevel.c | 1 | ||||
-rw-r--r-- | drivers/video/exynos/exynos_fb.c | 1 | ||||
-rw-r--r-- | drivers/video/exynos/exynos_mipi_dsi.c | 1 | ||||
-rw-r--r-- | drivers/video/exynos/exynos_mipi_dsi_common.c | 1 | ||||
-rw-r--r-- | drivers/video/exynos/exynos_mipi_dsi_lowlevel.c | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/drivers/video/exynos/exynos_dp.c b/drivers/video/exynos/exynos_dp.c index 59838da6c9..b0afb2338f 100644 --- a/drivers/video/exynos/exynos_dp.c +++ b/drivers/video/exynos/exynos_dp.c @@ -5,7 +5,6 @@ * Author: Donghwa Lee <dh09.lee@samsung.com> */ -#include <common.h> #include <dm.h> #include <display.h> #include <fdtdec.h> diff --git a/drivers/video/exynos/exynos_dp_lowlevel.c b/drivers/video/exynos/exynos_dp_lowlevel.c index ae500a7028..f007b319b2 100644 --- a/drivers/video/exynos/exynos_dp_lowlevel.c +++ b/drivers/video/exynos/exynos_dp_lowlevel.c @@ -6,7 +6,6 @@ */ #include <config.h> -#include <common.h> #include <log.h> #include <linux/delay.h> #include <linux/err.h> diff --git a/drivers/video/exynos/exynos_fb.c b/drivers/video/exynos/exynos_fb.c index 86970a6d5d..0407a3f51b 100644 --- a/drivers/video/exynos/exynos_fb.c +++ b/drivers/video/exynos/exynos_fb.c @@ -7,7 +7,6 @@ */ #include <config.h> -#include <common.h> #include <display.h> #include <div64.h> #include <dm.h> diff --git a/drivers/video/exynos/exynos_mipi_dsi.c b/drivers/video/exynos/exynos_mipi_dsi.c index 804fcd0b24..edeb0a87bb 100644 --- a/drivers/video/exynos/exynos_mipi_dsi.c +++ b/drivers/video/exynos/exynos_mipi_dsi.c @@ -6,7 +6,6 @@ * Author: Donghwa Lee <dh09.lee@samsung.com> */ -#include <common.h> #include <log.h> #include <malloc.h> #include <fdtdec.h> diff --git a/drivers/video/exynos/exynos_mipi_dsi_common.c b/drivers/video/exynos/exynos_mipi_dsi_common.c index be67cebae7..fc2767adc3 100644 --- a/drivers/video/exynos/exynos_mipi_dsi_common.c +++ b/drivers/video/exynos/exynos_mipi_dsi_common.c @@ -6,7 +6,6 @@ * Author: Donghwa Lee <dh09.lee@samsung.com> */ -#include <common.h> #include <log.h> #include <linux/delay.h> #include <linux/err.h> diff --git a/drivers/video/exynos/exynos_mipi_dsi_lowlevel.c b/drivers/video/exynos/exynos_mipi_dsi_lowlevel.c index 8111acd9a0..9f18b5da10 100644 --- a/drivers/video/exynos/exynos_mipi_dsi_lowlevel.c +++ b/drivers/video/exynos/exynos_mipi_dsi_lowlevel.c @@ -6,7 +6,6 @@ * Author: Donghwa Lee <dh09.lee@samsung.com> */ -#include <common.h> #include <asm/arch/dsim.h> #include <asm/arch/mipi_dsim.h> #include <asm/arch/power.h> |