diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-23 07:04:06 -0700 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2022-03-28 20:16:46 +0200 |
commit | fff49e01d800decb9a653d228077c5b7fec58ddb (patch) | |
tree | d4a2f97749db400eba855bf52e946166b59b1db9 /drivers/video | |
parent | 9b39da6e42815ebda9505138017f7396625a1c6e (diff) | |
download | u-boot-fff49e01d800decb9a653d228077c5b7fec58ddb.tar.gz u-boot-fff49e01d800decb9a653d228077c5b7fec58ddb.tar.bz2 u-boot-fff49e01d800decb9a653d228077c5b7fec58ddb.zip |
video: Drop video_fb header
This is not used now. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/da8xx-fb.c | 1 | ||||
-rw-r--r-- | drivers/video/fsl_dcu_fb.c | 1 | ||||
-rw-r--r-- | drivers/video/fsl_diu_fb.c | 1 | ||||
-rw-r--r-- | drivers/video/imx/mxc_ipuv3_fb.c | 1 | ||||
-rw-r--r-- | drivers/video/mxsfb.c | 1 | ||||
-rw-r--r-- | drivers/video/nexell_display.c | 1 | ||||
-rw-r--r-- | drivers/video/omap3_dss.c | 1 | ||||
-rw-r--r-- | drivers/video/sunxi/sunxi_display.c | 1 |
8 files changed, 0 insertions, 8 deletions
diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c index 462c318126..db9a820377 100644 --- a/drivers/video/da8xx-fb.c +++ b/drivers/video/da8xx-fb.c @@ -16,7 +16,6 @@ #include <log.h> #include <malloc.h> #include <memalign.h> -#include <video_fb.h> #include <asm/global_data.h> #include <linux/delay.h> #include <linux/list.h> diff --git a/drivers/video/fsl_dcu_fb.c b/drivers/video/fsl_dcu_fb.c index dc5b24c98b..b8bd4727c9 100644 --- a/drivers/video/fsl_dcu_fb.c +++ b/drivers/video/fsl_dcu_fb.c @@ -17,7 +17,6 @@ #include <linux/fb.h> #include <malloc.h> #include <video.h> -#include <video_fb.h> #include "videomodes.h" /* Convert the X,Y resolution pair into a single number */ diff --git a/drivers/video/fsl_diu_fb.c b/drivers/video/fsl_diu_fb.c index 2c21e293a2..6e335b5f43 100644 --- a/drivers/video/fsl_diu_fb.c +++ b/drivers/video/fsl_diu_fb.c @@ -12,7 +12,6 @@ #include <asm/io.h> #include "videomodes.h" -#include <video_fb.h> #include <fsl_diu_fb.h> #include <linux/list.h> #include <linux/fb.h> diff --git a/drivers/video/imx/mxc_ipuv3_fb.c b/drivers/video/imx/mxc_ipuv3_fb.c index 98228f2ad6..49bbeefdd8 100644 --- a/drivers/video/imx/mxc_ipuv3_fb.c +++ b/drivers/video/imx/mxc_ipuv3_fb.c @@ -22,7 +22,6 @@ #include <asm/io.h> #include <asm/mach-imx/video.h> #include <malloc.h> -#include <video_fb.h> #include "../videomodes.h" #include "ipu.h" #include "mxcfb.h" diff --git a/drivers/video/mxsfb.c b/drivers/video/mxsfb.c index 5f85c0c3eb..99a15e0c25 100644 --- a/drivers/video/mxsfb.c +++ b/drivers/video/mxsfb.c @@ -15,7 +15,6 @@ #include <linux/errno.h> #include <malloc.h> #include <video.h> -#include <video_fb.h> #include <asm/arch/clock.h> #include <asm/arch/imx-regs.h> diff --git a/drivers/video/nexell_display.c b/drivers/video/nexell_display.c index a0bd44c8b8..0a9cea680f 100644 --- a/drivers/video/nexell_display.c +++ b/drivers/video/nexell_display.c @@ -16,7 +16,6 @@ #include <linux/compat.h> #include <linux/err.h> #include <video.h> /* For struct video_uc_plat */ -#include <video_fb.h> #include <lcd.h> #include <asm/global_data.h> #include <asm/io.h> diff --git a/drivers/video/omap3_dss.c b/drivers/video/omap3_dss.c index dbd1408b6c..432b16bfbf 100644 --- a/drivers/video/omap3_dss.c +++ b/drivers/video/omap3_dss.c @@ -28,7 +28,6 @@ #include <common.h> #include <asm/io.h> #include <asm/arch/dss.h> -#include <video_fb.h> /* Configure VENC for a given Mode (NTSC / PAL) */ void omap3_dss_venc_config(const struct venc_regs *venc_cfg, diff --git a/drivers/video/sunxi/sunxi_display.c b/drivers/video/sunxi/sunxi_display.c index 5a21f7af66..2ee6212c58 100644 --- a/drivers/video/sunxi/sunxi_display.c +++ b/drivers/video/sunxi/sunxi_display.c @@ -30,7 +30,6 @@ #include <i2c.h> #include <malloc.h> #include <video.h> -#include <video_fb.h> #include <dm/uclass-internal.h> #include "../videomodes.h" #include "../anx9804.h" |