From: Devarsh Thakkar <devarsht@ti.com>
To: Simon Glass <sjg@chromium.org>,
U-Boot Mailing List <u-boot@lists.denx.de>
Cc: Tom Rini <trini@konsulko.com>,
Heinrich Schuchardt <xypron.glpk@gmx.de>,
Anatolij Gustschin <agust@denx.de>,
Fabrice Gasnier <fabrice.gasnier@foss.st.com>,
Marek Vasut <marex@denx.de>, Nikhil M Jain <n-jain1@ti.com>,
Patrick Delaunay <patrick.delaunay@foss.st.com>,
Rasmus Villemoes <rasmus.villemoes@prevas.dk>,
Stefan Roese <sr@denx.de>, "Luthra, Jai" <j-luthra@ti.com>,
"Bhatia, Aradhya" <a-bhatia1@ti.com>,
"Bajjuri, Praneeth" <praneeth@ti.com>
Subject: Re: [PATCH 04/19] video: Move BMP options and code to video directory
Date: Thu, 31 Aug 2023 11:30:13 +0530 [thread overview]
Message-ID: <016c0f45-d930-77fa-5031-8c69b4bf7c86@ti.com> (raw)
In-Reply-To: <20230824195917.1687886-5-sjg@chromium.org>
On 25/08/23 01:28, Simon Glass wrote:
> Put the options and the common BMP code with the other related Kconfig
> options in the drivers/video directory.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Devarsh Thakkar <devarsht@ti.com>
> ---
>
> common/Kconfig | 11 -----------
> common/Makefile | 1 -
> drivers/video/Kconfig | 11 +++++++++++
> drivers/video/Makefile | 2 ++
> {common => drivers/video}/bmp.c | 0
> 5 files changed, 13 insertions(+), 12 deletions(-)
> rename {common => drivers/video}/bmp.c (100%)
>
> diff --git a/common/Kconfig b/common/Kconfig
> index 844531a59eda..2f46fdb3f62c 100644
> --- a/common/Kconfig
> +++ b/common/Kconfig
> @@ -1167,14 +1167,3 @@ config FDT_SIMPLEFB
>
> config IO_TRACE
> bool
> -
> -config BMP
> - bool # Enable bmp image display
> - help
> - Enable bmp functions to display bmp image and get bmp info.
> -
> -config SPL_BMP
> - bool # Enable bmp image display at SPL
> - depends on SPL_VIDEO
> - help
> - Enable bmp functions to display bmp image and get bmp info at SPL.
> diff --git a/common/Makefile b/common/Makefile
> index f5c3d90f0675..0a3f75f2f1c8 100644
> --- a/common/Makefile
> +++ b/common/Makefile
> @@ -45,7 +45,6 @@ endif # !CONFIG_SPL_BUILD
>
> obj-$(CONFIG_$(SPL_TPL_)BOOTSTAGE) += bootstage.o
> obj-$(CONFIG_$(SPL_TPL_)BLOBLIST) += bloblist.o
> -obj-$(CONFIG_$(SPL_)BMP) += bmp.o
>
> ifdef CONFIG_SPL_BUILD
> ifdef CONFIG_SPL_DFU
> diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
> index 09f2cb1a7321..a4befd6b655c 100644
> --- a/drivers/video/Kconfig
> +++ b/drivers/video/Kconfig
> @@ -682,6 +682,11 @@ config BACKLIGHT_LM3533
> LM3533 Lighting Power chip. Only Bank A is supported as for now.
> Supported backlight level range is from 2 to 255 with step of 1.
>
> +config BMP
> + bool # Enable bmp image display
> + help
> + Enable bmp functions to display bmp image and get bmp info.
> +
> source "drivers/video/ti/Kconfig"
>
> source "drivers/video/exynos/Kconfig"
> @@ -1117,6 +1122,12 @@ config SPL_VIDEO_REMOVE
> if this option is enabled video driver will be removed at the end of
> SPL stage, before loading the next stage.
>
> +config SPL_BMP
> + bool # Enable bmp image display at SPL
> + depends on SPL_VIDEO
> + help
> + Enable bmp functions to display bmp image and get bmp info at SPL.
> +
> if SPL_SPLASH_SCREEN
>
> config SPL_SPLASH_SCREEN_ALIGN
> diff --git a/drivers/video/Makefile b/drivers/video/Makefile
> index d13af9f3b19b..a3182dca734b 100644
> --- a/drivers/video/Makefile
> +++ b/drivers/video/Makefile
> @@ -3,6 +3,8 @@
> # (C) Copyright 2000-2007
> # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
>
> +obj-$(CONFIG_$(SPL_)BMP) += bmp.o
> +
> ifdef CONFIG_DM
> obj-$(CONFIG_$(SPL_TPL_)BACKLIGHT) += backlight-uclass.o
> obj-$(CONFIG_BACKLIGHT_GPIO) += backlight_gpio.o
> diff --git a/common/bmp.c b/drivers/video/bmp.c
> similarity index 100%
> rename from common/bmp.c
> rename to drivers/video/bmp.c
next prev parent reply other threads:[~2023-08-31 6:00 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-24 19:58 [PATCH 00/19] Kconfig: Tidy up some options Simon Glass
2023-08-24 19:58 ` [PATCH 01/19] lib: rational: Move the Kconfigs into the correct place Simon Glass
2023-08-24 19:58 ` [PATCH 02/19] Kconfig: Move API into general setup Simon Glass
2023-08-24 19:58 ` [PATCH 03/19] video: Hide the BMP options Simon Glass
2023-08-24 19:58 ` [PATCH 04/19] video: Move BMP options and code to video directory Simon Glass
2023-08-31 6:00 ` Devarsh Thakkar [this message]
2023-08-24 19:58 ` [PATCH 05/19] net: Move SYS_RX_ETH_BUFFER into the network menu Simon Glass
2023-08-24 19:58 ` [PATCH 06/19] FMU: Avoid showing an unselectable menu option Simon Glass
2023-08-25 12:00 ` Sughosh Ganu
2023-08-25 14:55 ` Tom Rini
2023-08-24 19:58 ` [PATCH 07/19] test: Move POST under a renamed Testing section Simon Glass
2023-08-24 19:58 ` [PATCH 08/19] boot: Move fdt_support to boot/ Simon Glass
2023-08-31 6:02 ` Devarsh Thakkar
2023-09-04 16:48 ` Simon Glass
2023-08-24 19:59 ` [PATCH 09/19] Move fdt_simplefb " Simon Glass
2023-08-31 6:12 ` Devarsh Thakkar
2023-08-24 19:59 ` [PATCH 10/19] boot: Move some other fdt-fixup options to the same menu Simon Glass
2023-08-24 19:59 ` [PATCH 11/19] boot: Rename Android-boot text Simon Glass
2023-08-24 19:59 ` [PATCH 12/19] Kconfig: Create a menu for FIT Simon Glass
2023-08-24 19:59 ` [PATCH 13/19] Kconfig: Move SPL_FIT under FIT Simon Glass
2023-08-24 19:59 ` [PATCH 14/19] spl: Tidy up load address in spl_ram Simon Glass
2023-08-24 19:59 ` [PATCH 15/19] boot: Make standard boot a menu Simon Glass
2023-08-24 19:59 ` [PATCH 16/19] Kconfig: Move TEXT_BASE et al under general setup Simon Glass
2023-08-24 19:59 ` [PATCH 17/19] Make DISTRO_DEFAULTS as deprecated Simon Glass
2023-08-28 14:41 ` Mark Kettenis
2023-08-28 14:57 ` Tom Rini
2023-08-24 19:59 ` [PATCH 18/19] boot: Join FDT_FIXUP_PARTITIONS with related options Simon Glass
2023-08-24 19:59 ` [PATCH 19/19] boot: Join ARCH_FIXUP_FDT_MEMORY " Simon Glass
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=016c0f45-d930-77fa-5031-8c69b4bf7c86@ti.com \
--to=devarsht@ti.com \
--cc=a-bhatia1@ti.com \
--cc=agust@denx.de \
--cc=fabrice.gasnier@foss.st.com \
--cc=j-luthra@ti.com \
--cc=marex@denx.de \
--cc=n-jain1@ti.com \
--cc=patrick.delaunay@foss.st.com \
--cc=praneeth@ti.com \
--cc=rasmus.villemoes@prevas.dk \
--cc=sjg@chromium.org \
--cc=sr@denx.de \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
--cc=xypron.glpk@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.