public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rini <trini@konsulko.com>
To: Neha Malcom Francis <n-francis@ti.com>
Cc: "Simon Glass" <sjg@chromium.org>,
	u-boot@lists.denx.de, "Adam Ford" <aford173@gmail.com>,
	"Alexey Brodkin" <alexey.brodkin@synopsys.com>,
	"Ashok Reddy Soma" <ashok.reddy.soma@xilinx.com>,
	"Aswath Govindraju" <a-govindraju@ti.com>,
	"Bharat Gooty" <bharat.gooty@broadcom.com>,
	"Bin Meng" <bmeng.cn@gmail.com>,
	"Brandon Maier" <brandon.maier@collins.com>,
	"Bryan Brattlof" <bb@ti.com>,
	"Chris Packham" <judge.packham@gmail.com>,
	"Dave Gerlach" <d-gerlach@ti.com>,
	"Eugeniy Paltsev" <Eugeniy.Paltsev@synopsys.com>,
	"Heinrich Schuchardt" <xypron.glpk@gmx.de>,
	"Ilias Apalodimas" <ilias.apalodimas@linaro.org>,
	"Jacky Bai" <ping.bai@nxp.com>, "Jagan Teki" <jagan@edgeble.ai>,
	"Jan Kiszka" <jan.kiszka@siemens.com>,
	"Jim Liu" <jim.t90615@gmail.com>,
	"John Keeping" <john@metanate.com>,
	"Kautuk Consul" <kconsul@ventanamicro.com>,
	"Kever Yang" <kever.yang@rock-chips.com>,
	"Le Jin" <le.jin@siemens.com>, "Lukasz Majewski" <lukma@denx.de>,
	"Marek Vasut" <marex@denx.de>,
	"Masahisa Kojima" <masahisa.kojima@linaro.org>,
	"Michal Simek" <michal.simek@amd.com>,
	"Nobuhiro Iwamatsu" <iwamatsu@nigauri.org>,
	"Pali Rohár" <pali@kernel.org>, "Peng Fan" <peng.fan@nxp.com>,
	"Philipp Tomsich" <philipp.tomsich@vrull.eu>,
	"Philippe Reynes" <philippe.reynes@softathome.com>,
	"Rasmus Villemoes" <rasmus.villemoes@prevas.dk>,
	"Rayagonda Kokatanur" <rayagonda.kokatanur@broadcom.com>,
	"Rick Chen" <rick@andestech.com>,
	"Samuel Holland" <samuel@sholland.org>,
	"Sean Anderson" <seanga2@gmail.com>,
	"Stefan Bosch" <stefan_b@posteo.net>,
	"Sughosh Ganu" <sughosh.ganu@linaro.org>,
	"Tianrui Wei" <tianrui-wei@outlook.com>,
	"Vignesh Raghavendra" <vigneshr@ti.com>,
	"Weijie Gao" <weijie.gao@mediatek.com>, "Ye Li" <ye.li@nxp.com>,
	uboot-snps-arc@synopsys.com
Subject: Re: [PATCH 02/88] treewide: Correct invalid Kconfig syntax and warnings
Date: Fri, 27 Jan 2023 08:21:40 -0500	[thread overview]
Message-ID: <Y9PP5KgTnDcSdo82@bill-the-cat> (raw)
In-Reply-To: <666f5e43-fb6b-c9cf-9608-62ddf6cf893a@ti.com>

[-- Attachment #1: Type: text/plain, Size: 15371 bytes --]

On Fri, Jan 27, 2023 at 03:36:34PM +0530, Neha Malcom Francis wrote:
> Hi Simon
> 
> On 24/01/23 03:29, Simon Glass wrote:
> > In several places a 'select' is used to select a choice, which is not
> > supported by Kconfig. In other places, the filename for the 'source'
> > command is not in quites.
> > 
> > Fix these two problems throughout the tree, so that kconfiglib does not
> > show any more warnings.
> > 
> > Signed-off-by: Simon Glass <sjg@chromium.org>
> > ---
> > 
> >   arch/Kconfig                          |  4 ++--
> >   arch/arc/Kconfig                      | 14 +++++++-------
> >   arch/arm/Kconfig                      |  6 +++---
> >   arch/arm/mach-nexell/Kconfig          |  2 +-
> >   arch/arm/mach-rmobile/Kconfig.64      |  8 ++++----
> >   arch/arm/mach-rockchip/rv1108/Kconfig |  4 ++--
> >   arch/arm/mach-rockchip/rv1126/Kconfig |  2 +-
> >   arch/x86/cpu/apollolake/Kconfig       |  2 +-
> >   board/efi/Kconfig                     |  4 ++--
> >   board/openpiton/riscv64/Kconfig       |  2 +-
> >   board/siemens/iot2050/Kconfig         |  2 +-
> >   board/ti/am62ax/Kconfig               |  4 ++--
> >   board/ti/am62x/Kconfig                |  4 ++--
> >   board/ti/am64x/Kconfig                |  4 ++--
> >   board/ti/am65x/Kconfig                |  4 ++--
> >   board/ti/j721e/Kconfig                |  8 ++++----
> >   board/ti/j721s2/Kconfig               |  4 ++--
> >   cmd/Kconfig                           |  4 ++--
> >   drivers/clk/Kconfig                   | 10 +++++-----
> >   drivers/crypto/Kconfig                |  8 ++++----
> >   drivers/ddr/imx/imx8ulp/Kconfig       |  2 +-
> >   drivers/pinctrl/intel/Kconfig         |  2 +-
> >   drivers/usb/host/Kconfig              |  2 +-
> >   lib/Kconfig                           | 18 +++++++++---------
> >   24 files changed, 62 insertions(+), 62 deletions(-)
> > 
> > diff --git a/arch/Kconfig b/arch/Kconfig
> > index d30676ae817..3b95fbe9b36 100644
> > --- a/arch/Kconfig
> > +++ b/arch/Kconfig
> > @@ -53,8 +53,8 @@ config ARC
> >   	select SUPPORT_OF_CONTROL
> >   	select SYS_CACHE_SHIFT_7
> >   	select TIMER
> > -	select SYS_BIG_ENDIAN if CPU_BIG_ENDIAN
> > -	select SYS_LITTLE_ENDIAN if !CPU_BIG_ENDIAN
> > +	# select SYS_BIG_ENDIAN if CPU_BIG_ENDIAN
> > +	# select SYS_LITTLE_ENDIAN if !CPU_BIG_ENDIAN
> >   config ARM
> >   	bool "ARM architecture"
> > diff --git a/arch/arc/Kconfig b/arch/arc/Kconfig
> > index 6ae66bb163c..8c0d1c8a3ee 100644
> > --- a/arch/arc/Kconfig
> > +++ b/arch/arc/Kconfig
> > @@ -32,35 +32,35 @@ choice
> >   config CPU_ARC750D
> >   	bool "ARC 750D"
> >   	depends on ISA_ARCOMPACT
> > -	select ARC_MMU_V2
> > +	# select ARC_MMU_V2
> >   	help
> >   	  Choose this option to build an U-Boot for ARC750D CPU.
> >   config CPU_ARC770D
> >   	bool "ARC 770D"
> >   	depends on ISA_ARCOMPACT
> > -	select ARC_MMU_V3
> > +	# select ARC_MMU_V3
> >   	help
> >   	  Choose this option to build an U-Boot for ARC770D CPU.
> >   config CPU_ARCEM6
> >   	bool "ARC EM6"
> >   	depends on ISA_ARCV2
> > -	select ARC_MMU_ABSENT
> > +	# select ARC_MMU_ABSENT
> >   	help
> >   	  Next Generation ARC Core based on ISA-v2 ISA without MMU.
> >   config CPU_ARCHS36
> >   	bool "ARC HS36"
> >   	depends on ISA_ARCV2
> > -	select ARC_MMU_ABSENT
> > +	# select ARC_MMU_ABSENT
> >   	help
> >   	  Next Generation ARC Core based on ISA-v2 ISA without MMU.
> >   config CPU_ARCHS38
> >   	bool "ARC HS38"
> >   	depends on ISA_ARCV2
> > -	select ARC_MMU_V4
> > +	# select ARC_MMU_V4
> >   	help
> >   	  Next Generation ARC Core based on ISA-v2 ISA with MMU.
> > @@ -172,14 +172,14 @@ config TARGET_AXS103
> >   config TARGET_EMSDP
> >   	bool "Synopsys EM Software Development Platform"
> > -	select CPU_ARCEM6
> > +	# select CPU_ARCEM6
> >   config TARGET_HSDK
> >   	bool "Support Synopsys HSDK or HSDK-4xD board"
> >   config TARGET_IOT_DEVKIT
> >   	bool "Synopsys Brite IoT Development kit"
> > -	select CPU_ARCEM6
> > +	# select CPU_ARCEM6
> >   endchoice
> > diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> > index c9a44ebc221..b18af584770 100644
> > --- a/arch/arm/Kconfig
> > +++ b/arch/arm/Kconfig
> > @@ -598,7 +598,7 @@ config ARCH_MVEBU
> >   	select SPL_TIMER if SPL
> >   	select TIMER if !ARM64
> >   	select OF_CONTROL
> > -	select OF_SEPARATE
> > +	# select OF_SEPARATE
> >   	select SPI
> >   	imply CMD_DM
> > @@ -1038,7 +1038,7 @@ config ARCH_SNAPDRAGON
> >   	select GPIO_EXTRA_HEADER
> >   	select MSM_SMEM
> >   	select OF_CONTROL
> > -	select OF_SEPARATE
> > +	# select OF_SEPARATE
> >   	select SMEM
> >   	select SPMI
> >   	imply CMD_DM
> > @@ -1107,7 +1107,7 @@ config ARCH_SUNXI
> >   	select GPIO_EXTRA_HEADER
> >   	select OF_BOARD_SETUP
> >   	select OF_CONTROL
> > -	select OF_SEPARATE
> > +	# select OF_SEPARATE
> >   	select PINCTRL
> >   	select SPECIFY_CONSOLE_INDEX
> >   	select SPL_SEPARATE_BSS if SPL
> > diff --git a/arch/arm/mach-nexell/Kconfig b/arch/arm/mach-nexell/Kconfig
> > index 16324e15206..fd6c7774f68 100644
> > --- a/arch/arm/mach-nexell/Kconfig
> > +++ b/arch/arm/mach-nexell/Kconfig
> > @@ -4,7 +4,7 @@ config ARCH_S5P4418
> >   	bool "Nexell S5P4418 SoC"
> >   	select CPU_V7A
> >   	select OF_CONTROL
> > -	select OF_SEPARATE
> > +	# select OF_SEPARATE
> >   	select NX_GPIO
> >   	select DM_SERIAL
> >   	select PL01X_SERIAL
> > diff --git a/arch/arm/mach-rmobile/Kconfig.64 b/arch/arm/mach-rmobile/Kconfig.64
> > index 007eaad251d..0e8a49deeb6 100644
> > --- a/arch/arm/mach-rmobile/Kconfig.64
> > +++ b/arch/arm/mach-rmobile/Kconfig.64
> > @@ -93,7 +93,7 @@ config TARGET_BEACON_RZG2M
> >   	select PINCTRL_PFC_R8A774B1
> >   	select PINCTRL_PFC_R8A774E1
> >   	imply MULTI_DTB_FIT
> > -	imply MULTI_DTB_FIT_USER_DEFINED_AREA
> > +	# imply MULTI_DTB_FIT_USER_DEFINED_AREA
> >   	imply CLK_VERSACLOCK
> >   	imply CLK_CCF
> > @@ -135,7 +135,7 @@ config TARGET_HIHOPE_RZG2
> >   	imply RZ_G2
> >   	imply SYS_MALLOC_F
> >   	imply MULTI_DTB_FIT
> > -	imply MULTI_DTB_FIT_USER_DEFINED_AREA
> > +	# imply MULTI_DTB_FIT_USER_DEFINED_AREA
> >   	help
> >             Support for RZG2 HiHope platform
> > @@ -153,7 +153,7 @@ config TARGET_SALVATOR_X
> >   	imply R8A77965
> >   	imply SYS_MALLOC_F
> >   	imply MULTI_DTB_FIT
> > -	imply MULTI_DTB_FIT_USER_DEFINED_AREA
> > +	# imply MULTI_DTB_FIT_USER_DEFINED_AREA
> >   	help
> >             Support for Renesas R-Car Gen3 platform
> > @@ -164,7 +164,7 @@ config TARGET_ULCB
> >   	imply R8A77965
> >   	imply SYS_MALLOC_F
> >   	imply MULTI_DTB_FIT
> > -	imply MULTI_DTB_FIT_USER_DEFINED_AREA
> > +	# imply MULTI_DTB_FIT_USER_DEFINED_AREA
> >   	help
> >             Support for Renesas R-Car Gen3 ULCB platform
> > diff --git a/arch/arm/mach-rockchip/rv1108/Kconfig b/arch/arm/mach-rockchip/rv1108/Kconfig
> > index a12216dccf6..28ed0b24581 100644
> > --- a/arch/arm/mach-rockchip/rv1108/Kconfig
> > +++ b/arch/arm/mach-rockchip/rv1108/Kconfig
> > @@ -36,7 +36,7 @@ config SYS_SOC
> >   config SYS_MALLOC_F_LEN
> >   	default 0x400
> > -source board/rockchip/evb_rv1108/Kconfig
> > -source board/elgin/elgin_rv1108/Kconfig
> > +source "board/rockchip/evb_rv1108/Kconfig"
> > +source "board/elgin/elgin_rv1108/Kconfig"
> >   endif
> > diff --git a/arch/arm/mach-rockchip/rv1126/Kconfig b/arch/arm/mach-rockchip/rv1126/Kconfig
> > index 7382c559966..e13d4093688 100644
> > --- a/arch/arm/mach-rockchip/rv1126/Kconfig
> > +++ b/arch/arm/mach-rockchip/rv1126/Kconfig
> > @@ -54,6 +54,6 @@ config SYS_MALLOC_F_LEN
> >   config TEXT_BASE
> >   	default 0x600000
> > -source board/edgeble/neural-compute-module-2/Kconfig
> > +source "board/edgeble/neural-compute-module-2/Kconfig"
> >   endif
> > diff --git a/arch/x86/cpu/apollolake/Kconfig b/arch/x86/cpu/apollolake/Kconfig
> > index c7f26d171cb..5fea952188a 100644
> > --- a/arch/x86/cpu/apollolake/Kconfig
> > +++ b/arch/x86/cpu/apollolake/Kconfig
> > @@ -5,7 +5,7 @@
> >   config INTEL_APOLLOLAKE
> >   	bool
> > -	select FSP_VERSION2
> > +	# select FSP_VERSION2
> >   	select HAVE_FSP
> >   	select ARCH_MISC_INIT
> >   	select USE_CAR
> > diff --git a/board/efi/Kconfig b/board/efi/Kconfig
> > index 3df6e31c8ba..688cb9d82d2 100644
> > --- a/board/efi/Kconfig
> > +++ b/board/efi/Kconfig
> > @@ -6,7 +6,7 @@ choice
> >   config TARGET_EFI_APP32
> >   	bool "32-bit efi application"
> > -	select EFI_APP
> > +	# select EFI_APP
> >   	help
> >   	  This target is used for running U-Boot on top of EFI. In
> >   	  this case EFI does the early initialisation, and U-Boot
> > @@ -15,7 +15,7 @@ config TARGET_EFI_APP32
> >   config TARGET_EFI_APP64
> >   	bool "64-bit efi application"
> > -	select EFI_APP
> > +	# select EFI_APP
> >   	select X86_64
> >   	help
> >   	  This target is used for running U-Boot on top of EFI in 64-bit mode.
> > diff --git a/board/openpiton/riscv64/Kconfig b/board/openpiton/riscv64/Kconfig
> > index eb0db8a64c8..02ad27309aa 100644
> > --- a/board/openpiton/riscv64/Kconfig
> > +++ b/board/openpiton/riscv64/Kconfig
> > @@ -35,6 +35,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
> >   	imply SPL_SMP
> >   	imply SPL_MMC
> >   	imply SMP
> > -	imply SPL_RISCV_MMODE
> > +	# imply SPL_RISCV_MMODE
> >   endif
> > diff --git a/board/siemens/iot2050/Kconfig b/board/siemens/iot2050/Kconfig
> > index 063142a43bf..096102bd370 100644
> > --- a/board/siemens/iot2050/Kconfig
> > +++ b/board/siemens/iot2050/Kconfig
> > @@ -9,7 +9,7 @@
> >   config TARGET_IOT2050_A53
> >   	bool "IOT2050 running on A53"
> >   	select ARM64
> > -	select SOC_K3_AM654
> > +	# select SOC_K3_AM654
> >   	select BOARD_LATE_INIT
> >   	select SYS_DISABLE_DCACHE_OPS
> >   	select BINMAN
> > diff --git a/board/ti/am62ax/Kconfig b/board/ti/am62ax/Kconfig
> > index 2c18cd49b5d..db3bdc5f35c 100644
> > --- a/board/ti/am62ax/Kconfig
> > +++ b/board/ti/am62ax/Kconfig
> > @@ -10,7 +10,7 @@ choice
> >   config TARGET_AM62A7_A53_EVM
> >   	bool "TI K3 based AM62A7 EVM running on A53"
> >   	select ARM64
> > -	select SOC_K3_AM62A7
> > +	# select SOC_K3_AM62A7
> >   	imply BOARD
> >   	imply SPL_BOARD
> >   	imply TI_I2C_BOARD_DETECT
> > @@ -20,7 +20,7 @@ config TARGET_AM62A7_R5_EVM
> >   	select CPU_V7R
> >   	select SYS_THUMB_BUILD
> >   	select K3_LOAD_SYSFW
> > -	select SOC_K3_AM62A7
> > +	# select SOC_K3_AM62A7
> >   	select RAM
> >   	select SPL_RAM
> >   	select K3_DDRSS
> > diff --git a/board/ti/am62x/Kconfig b/board/ti/am62x/Kconfig
> > index 87fed44df17..090ece3315a 100644
> > --- a/board/ti/am62x/Kconfig
> > +++ b/board/ti/am62x/Kconfig
> > @@ -10,14 +10,14 @@ choice
> >   config TARGET_AM625_A53_EVM
> >   	bool "TI K3 based AM625 EVM running on A53"
> >   	select ARM64
> > -	select SOC_K3_AM625
> > +	# select SOC_K3_AM625
> >   config TARGET_AM625_R5_EVM
> >   	bool "TI K3 based AM625 EVM running on R5"
> >   	select CPU_V7R
> >   	select SYS_THUMB_BUILD
> >   	select K3_LOAD_SYSFW
> > -	select SOC_K3_AM625
> > +	# select SOC_K3_AM625
> >   	select RAM
> >   	select SPL_RAM
> >   	select K3_DDRSS
> > diff --git a/board/ti/am64x/Kconfig b/board/ti/am64x/Kconfig
> > index 8036947e345..f642109686f 100644
> > --- a/board/ti/am64x/Kconfig
> > +++ b/board/ti/am64x/Kconfig
> > @@ -9,7 +9,7 @@ choice
> >   config TARGET_AM642_A53_EVM
> >   	bool "TI K3 based AM642 EVM running on A53"
> >   	select ARM64
> > -	select SOC_K3_AM642
> > +	# select SOC_K3_AM642
> >   	imply BOARD
> >   	imply SPL_BOARD
> >   	imply TI_I2C_BOARD_DETECT
> > @@ -19,7 +19,7 @@ config TARGET_AM642_R5_EVM
> >   	select CPU_V7R
> >   	select SYS_THUMB_BUILD
> >   	select K3_LOAD_SYSFW
> > -	select SOC_K3_AM642
> > +	# select SOC_K3_AM642
> >   	select RAM
> >   	select SPL_RAM
> >   	select K3_DDRSS
> > diff --git a/board/ti/am65x/Kconfig b/board/ti/am65x/Kconfig
> > index 4765b13ba0c..dcdc46f0b59 100644
> > --- a/board/ti/am65x/Kconfig
> > +++ b/board/ti/am65x/Kconfig
> > @@ -10,7 +10,7 @@ choice
> >   config TARGET_AM654_A53_EVM
> >   	bool "TI K3 based AM654 EVM running on A53"
> >   	select ARM64
> > -	select SOC_K3_AM654
> > +	# select SOC_K3_AM654
> >   	select SYS_DISABLE_DCACHE_OPS
> >   	select BOARD_LATE_INIT
> >   	imply TI_I2C_BOARD_DETECT
> > @@ -19,7 +19,7 @@ config TARGET_AM654_R5_EVM
> >   	bool "TI K3 based AM654 EVM running on R5"
> >   	select CPU_V7R
> >   	select SYS_THUMB_BUILD
> > -	select SOC_K3_AM654
> > +	# select SOC_K3_AM654
> >   	select K3_LOAD_SYSFW
> >   	select K3_AM654_DDRSS
> >   	imply SYS_K3_SPL_ATF
> > diff --git a/board/ti/j721e/Kconfig b/board/ti/j721e/Kconfig
> > index d19d30d59ef..f997741fe5a 100644
> > --- a/board/ti/j721e/Kconfig
> > +++ b/board/ti/j721e/Kconfig
> > @@ -10,7 +10,7 @@ choice
> >   config TARGET_J721E_A72_EVM
> >   	bool "TI K3 based J721E EVM running on A72"
> >   	select ARM64
> > -	select SOC_K3_J721E
> > +	# select SOC_K3_J721E
> >   	select BOARD_LATE_INIT
> >   	imply TI_I2C_BOARD_DETECT
> >   	select SYS_DISABLE_DCACHE_OPS
> > @@ -19,7 +19,7 @@ config TARGET_J721E_R5_EVM
> >   	bool "TI K3 based J721E EVM running on R5"
> >   	select CPU_V7R
> >   	select SYS_THUMB_BUILD
> > -	select SOC_K3_J721E
> > +	# select SOC_K3_J721E
> >   	select K3_LOAD_SYSFW
> >   	select RAM
> >   	select SPL_RAM
> > @@ -30,7 +30,7 @@ config TARGET_J721E_R5_EVM
> >   config TARGET_J7200_A72_EVM
> >   	bool "TI K3 based J7200 EVM running on A72"
> >   	select ARM64
> > -	select SOC_K3_J721E
> > +	# select SOC_K3_J721E
> >   	select BOARD_LATE_INIT
> >   	imply TI_I2C_BOARD_DETECT
> >   	select SYS_DISABLE_DCACHE_OPS
> > @@ -39,7 +39,7 @@ config TARGET_J7200_R5_EVM
> >   	bool "TI K3 based J7200 EVM running on R5"
> >   	select CPU_V7R
> >   	select SYS_THUMB_BUILD
> > -	select SOC_K3_J721E
> > +	# select SOC_K3_J721E
> >   	select K3_LOAD_SYSFW
> >   	select RAM
> >   	select SPL_RAM
> > diff --git a/board/ti/j721s2/Kconfig b/board/ti/j721s2/Kconfig
> > index 6141798333c..1631778eaed 100644
> > --- a/board/ti/j721s2/Kconfig
> > +++ b/board/ti/j721s2/Kconfig
> > @@ -10,7 +10,7 @@ choice
> >   config TARGET_J721S2_A72_EVM
> >   	bool "TI K3 based J721S2 EVM running on A72"
> >   	select ARM64
> > -	select SOC_K3_J721S2
> > +	# select SOC_K3_J721S2
> >   	select BOARD_LATE_INIT
> >   	imply TI_I2C_BOARD_DETECT
> >   	select SYS_DISABLE_DCACHE_OPS
> > @@ -19,7 +19,7 @@ config TARGET_J721S2_R5_EVM
> >   	bool "TI K3 based J721S2 EVM running on R5"
> >   	select CPU_V7R
> >   	select SYS_THUMB_BUILD
> > -	select SOC_K3_J721S2
> > +	# select SOC_K3_J721S2
> >   	select K3_LOAD_SYSFW
> >   	select RAM
> >   	select SPL_RAM
> 
> This commit will break board support for these K3 devices. Understanding
> that choices can't be selected, can we keep this patch on hold till we can
> clean it up without breaking anything?

Yeah, pretty much every one of the changes to comment out a line is
wrong and the underlying why needs to be fixed. For the BE/LE one for
example, there's a conflict between how MIPS does it, and how ARC does
it. For these SOC ones, the options likely shouldn't be asked about at
all, and be select'd by the TARGET in the board choice selection.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

  reply	other threads:[~2023-01-27 13:40 UTC|newest]

Thread overview: 117+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-23 21:59 [PATCH 00/88] Clean up of bad Kconfig options Simon Glass
2023-01-23 21:59 ` [PATCH 01/88] moveconfig: Add an option to compare Kconfig against source Simon Glass
2023-01-23 21:59 ` [PATCH 02/88] treewide: Correct invalid Kconfig syntax and warnings Simon Glass
2023-01-27 10:06   ` Neha Malcom Francis
2023-01-27 13:21     ` Tom Rini [this message]
2023-01-27 13:45   ` Tom Rini
2023-01-27 15:00     ` Daniel Schwierzeck
2023-01-27 15:48       ` Tom Rini
2023-02-07  4:02         ` Simon Glass
2023-02-10 12:24       ` Alexey Brodkin
2023-02-10 14:03         ` Tom Rini
2023-01-23 21:59 ` [PATCH 03/88] power: Drop fg_max77693 Simon Glass
2023-01-31 12:51   ` Jaehoon Chung
2023-01-23 21:59 ` [PATCH 04/88] nand: Drop CONFIG_NAND_SPEAR Simon Glass
2023-01-24 12:03   ` Michael Nazzareno Trimarchi
2023-01-23 21:59 ` [PATCH 05/88] power: Drop pmic_max77693.c Simon Glass
2023-01-31 12:51   ` Jaehoon Chung
2023-01-23 21:59 ` [PATCH 06/88] gpio: Drop adi_gpio2 Simon Glass
2023-01-23 21:59 ` [PATCH 07/88] Makefile: Drop CONFIG_AIS_CONFIG_FILE Simon Glass
2023-01-23 21:59 ` [PATCH 08/88] misc: Drop ali512x Simon Glass
2023-01-23 21:59 ` [PATCH 09/88] sandbox: Drop reference to CONFIG_ARCH_DEVICE_TREE Simon Glass
2023-01-23 21:59 ` [PATCH 10/88] Rename ARCH_NPCM7xx Simon Glass
2023-01-23 21:59 ` [PATCH 11/88] arm: mvebu: Correct reference to ARMADA_370 Simon Glass
2023-01-24  6:06   ` Stefan Roese
2023-01-23 21:59 ` [PATCH 12/88] arm: mvebu: Drop reference to CONFIG_ARMADA_39X Simon Glass
2023-01-24  6:07   ` Stefan Roese
2023-01-23 21:59 ` [PATCH 13/88] ppc: Drop bat_rw Simon Glass
2023-01-23 21:59 ` [PATCH 14/88] rockchip: Correct a reference to CONFIG_BOOT_MODE_REG Simon Glass
2023-01-23 21:59 ` [PATCH 15/88] cmd: Add an option to enable the ini command Simon Glass
2023-01-23 21:59 ` [PATCH 16/88] cmd: Drop mfsl command Simon Glass
2023-01-23 21:59 ` [PATCH 17/88] Correct CONFIG_CONTROLCENTERDC Simon Glass
2023-01-23 21:59 ` [PATCH 18/88] Drop dataflash_mmc_mux command Simon Glass
2023-01-23 21:59 ` [PATCH 19/88] Drop CONFIG_DM644X_GPIO Simon Glass
2023-01-23 21:59 ` [PATCH 20/88] Makefile: Avoid use of invalid CONFIG_ option Simon Glass
2023-01-23 21:59 ` [PATCH 21/88] env: Drop ENV_IS_IN_SATA Simon Glass
2023-01-23 21:59 ` [PATCH 22/88] samsung: Drop CONFIG_EXYNOS_PWM_BL Simon Glass
2023-01-23 21:59 ` [PATCH 23/88] fpga: Add a LATTICE option Simon Glass
2023-01-23 21:59 ` [PATCH 24/88] fpga: Add a FPGA_STRATIX_II option Simon Glass
2023-01-23 21:59 ` [PATCH 25/88] misc: Drop mc9sdz60 driver Simon Glass
2023-01-23 21:59 ` [PATCH 26/88] freescale: Drop unused pixis code Simon Glass
2023-01-23 21:59 ` [PATCH 27/88] freescale: Drop unused ftpmu010 driver Simon Glass
2023-01-23 21:59 ` [PATCH 28/88] rcar: Drop timer Simon Glass
2023-01-23 21:59 ` [PATCH 29/88] i2c: Rename I2C_MUX_PCA954x Simon Glass
2023-01-23 22:28   ` Chris Packham
2023-01-24  5:51   ` Heiko Schocher
2023-01-24  7:49   ` Luca Ceresoli
2023-01-23 21:59 ` [PATCH 30/88] imx: Drop unused CONFIG_IMX Simon Glass
2023-01-23 21:59 ` [PATCH 31/88] arm: Drop old kona code Simon Glass
2023-01-23 21:59 ` [PATCH 32/88] video: Drop unused lg4573 driver Simon Glass
2023-01-23 21:59 ` [PATCH 33/88] m68k: Drop unused CONFIG_M52277 Simon Glass
2023-01-23 21:59 ` [PATCH 34/88] m68k: Rename MCF5301x Simon Glass
2023-01-23 21:59 ` [PATCH 35/88] m68k: Rename MCF532x Simon Glass
2023-01-23 21:59 ` [PATCH 36/88] m68k: Rename MCF5441x Simon Glass
2023-01-23 21:59 ` [PATCH 37/88] m68k: Drop unused CONFIG_MACH_DAVINCI_DA830_EVM Simon Glass
2023-01-23 21:59 ` [PATCH 38/88] arm: Drop CONFIG_MMU Simon Glass
2023-01-23 21:59 ` [PATCH 39/88] arc: " Simon Glass
2023-01-23 21:59 ` [PATCH 40/88] ppc: Rename MPC83xx Simon Glass
2023-01-24  5:51   ` Heiko Schocher
2023-01-23 21:59 ` [PATCH 41/88] gpio: Drop unused mpc83xx_gpio driver Simon Glass
2023-01-23 21:59 ` [PATCH 42/88] ppc: Rename MPC85xx Simon Glass
2023-01-23 21:59 ` [PATCH 43/88] powerpc: Rename MPC86xx Simon Glass
2023-01-23 21:59 ` [PATCH 44/88] imx: Rename CONFIG_MXS to CFG_MXS Simon Glass
2023-01-23 21:59 ` [PATCH 45/88] nand: Drop unused actl_nand driver Simon Glass
2023-01-23 21:59 ` [PATCH 46/88] mtd: Drop unused fsl_upm driver Simon Glass
2023-01-24 12:04   ` Michael Nazzareno Trimarchi
2023-01-23 21:59 ` [PATCH 47/88] mtd: Drop unused fsmc_nand driver Simon Glass
2023-01-24 12:06   ` Michael Nazzareno Trimarchi
2023-02-22 19:02   ` Patrick DELAUNAY
2023-01-23 21:59 ` [PATCH 48/88] mtd: Drop unused kb9202_nand driver Simon Glass
2023-01-23 21:59 ` [PATCH 49/88] mtd: Drop unused nand_plat driver Simon Glass
2023-01-23 21:59 ` [PATCH 50/88] Makefile: Drop CONFIG_OF_EARLY_FLATTREE Simon Glass
2023-01-23 21:59 ` [PATCH 51/88] omap: Drop unused CONFIG_OMAP_USB_PHY Simon Glass
2023-01-24 19:09   ` Tom Rini
2023-01-23 21:59 ` [PATCH 52/88] mtd: Drop unused CONFIG_ONENAND_U_BOOT Simon Glass
2023-01-23 21:59 ` [PATCH 53/88] ppc: Drop unused CONFIG_P2020DS Simon Glass
2023-01-23 21:59 ` [PATCH 54/88] gpio: Drop unused pca9698 driver Simon Glass
2023-01-23 21:59 ` [PATCH 55/88] samsung: Rename PINCTRL_EXYNOS78x0 Simon Glass
2023-01-23 21:59 ` [PATCH 56/88] power: Drop unused bat_trats driver and battery code Simon Glass
2023-01-31 12:53   ` Jaehoon Chung
2023-01-23 22:00 ` [PATCH 57/88] power: Drop unused fg_max17042 driver and fuel gauge code Simon Glass
2023-01-31 12:53   ` Jaehoon Chung
2023-01-23 22:00 ` [PATCH 58/88] power: Drop unused muic_max77693 driver and mfd code Simon Glass
2023-01-31 12:53   ` Jaehoon Chung
2023-01-23 22:00 ` [PATCH 59/88] power: Drop unused muic_max8997 driver Simon Glass
2023-01-31 12:54   ` Jaehoon Chung
2023-01-23 22:00 ` [PATCH 60/88] freescale: Drop unused pq-mds-pib driver Simon Glass
2023-01-23 22:00 ` [PATCH 61/88] rmobile: Drop CONFIG_RMOBILE Simon Glass
2023-01-23 22:00 ` [PATCH 62/88] rtc: Drop old and unused drivers Simon Glass
2023-01-23 22:00 ` [PATCH 63/88] mtd: Drop unused CONFIG_S32V234 Simon Glass
2023-01-23 22:00 ` [PATCH 64/88] mtd: Drop unused scf0403_lcd driver Simon Glass
2023-01-23 22:00 ` [PATCH 65/88] rmobile: Drop CONFIG_SH73A0 and associated code Simon Glass
2023-01-23 22:00 ` [PATCH 66/88] sh4: Drop unused pci_sh7780 driver Simon Glass
2023-01-23 22:00 ` [PATCH 67/88] Drop ubsha1 tool Simon Glass
2023-01-23 22:00 ` [PATCH 68/88] arm: Rename STM32MP13x Simon Glass
2023-01-31 12:47   ` Patrice CHOTARD
2023-02-22 19:07   ` Patrick DELAUNAY
2023-01-23 22:00 ` [PATCH 69/88] arm: Rename STM32MP15x Simon Glass
2023-01-31 12:48   ` Patrice CHOTARD
2023-02-22 19:07   ` Patrick DELAUNAY
2023-01-23 22:00 ` [PATCH 70/88] sysreset: at91: Correct Makefile rule for SYSRESET_AT91 Simon Glass
2023-01-27 13:53   ` Claudiu.Beznea
2023-01-23 22:00 ` [PATCH 71/88] gdsys: Drop unused fpga file Simon Glass
2023-01-23 22:00 ` [PATCH 73/88] compulab: Drop CONFIG_TARGET_MCM_IMX8M_MINI Simon Glass
2023-01-23 22:00 ` [PATCH 74/88] freescale: Drop CONFIG_TARGET_MPC8536DS et al Simon Glass
2023-01-23 22:00 ` [PATCH 75/88] sh4: Drop unused twl6030 driver Simon Glass
2023-01-23 22:00 ` [PATCH 76/88] ppc: Makefile: Drop unused ppc4xx code Simon Glass
2023-01-24  6:18   ` Stefan Roese
2023-01-23 22:00 ` [PATCH 77/88] armada: usb: net: Drop unused USB drivers Simon Glass
2023-01-23 22:00 ` [PATCH 78/88] usb: Drop unused ehci-faraday driver Simon Glass
2023-01-23 22:00 ` [PATCH 79/88] usb: Drop unused fotg210 gadget Simon Glass
2023-01-23 22:00 ` [PATCH 80/88] rmobile: Drop unused ehci-rmobile driver Simon Glass
2023-01-23 22:00 ` [PATCH 81/88] usb: Drop unused ehci-vct driver Simon Glass
2023-01-23 22:00 ` [PATCH 82/88] usb: Drop unused sl811-hcd driver Simon Glass
2023-01-23 22:00 ` [PATCH 85/88] watchdog: Rename WDT_MPC8xx Simon Glass
2023-01-23 22:00 ` [PATCH 87/88] freescale: Drop unused zm7300 driver Simon Glass
2023-01-23 22:00 ` [PATCH 88/88] fdt: Drop use of non-existent OF_PLATDATA option Simon Glass
     [not found] ` <20230123220031.3540724-73-sjg@chromium.org>
2023-01-24  5:52   ` [PATCH 72/88] sh4: Drop unused kona_i2c driver Heiko Schocher

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=Y9PP5KgTnDcSdo82@bill-the-cat \
    --to=trini@konsulko.com \
    --cc=Eugeniy.Paltsev@synopsys.com \
    --cc=a-govindraju@ti.com \
    --cc=aford173@gmail.com \
    --cc=alexey.brodkin@synopsys.com \
    --cc=ashok.reddy.soma@xilinx.com \
    --cc=bb@ti.com \
    --cc=bharat.gooty@broadcom.com \
    --cc=bmeng.cn@gmail.com \
    --cc=brandon.maier@collins.com \
    --cc=d-gerlach@ti.com \
    --cc=ilias.apalodimas@linaro.org \
    --cc=iwamatsu@nigauri.org \
    --cc=jagan@edgeble.ai \
    --cc=jan.kiszka@siemens.com \
    --cc=jim.t90615@gmail.com \
    --cc=john@metanate.com \
    --cc=judge.packham@gmail.com \
    --cc=kconsul@ventanamicro.com \
    --cc=kever.yang@rock-chips.com \
    --cc=le.jin@siemens.com \
    --cc=lukma@denx.de \
    --cc=marex@denx.de \
    --cc=masahisa.kojima@linaro.org \
    --cc=michal.simek@amd.com \
    --cc=n-francis@ti.com \
    --cc=pali@kernel.org \
    --cc=peng.fan@nxp.com \
    --cc=philipp.tomsich@vrull.eu \
    --cc=philippe.reynes@softathome.com \
    --cc=ping.bai@nxp.com \
    --cc=rasmus.villemoes@prevas.dk \
    --cc=rayagonda.kokatanur@broadcom.com \
    --cc=rick@andestech.com \
    --cc=samuel@sholland.org \
    --cc=seanga2@gmail.com \
    --cc=sjg@chromium.org \
    --cc=stefan_b@posteo.net \
    --cc=sughosh.ganu@linaro.org \
    --cc=tianrui-wei@outlook.com \
    --cc=u-boot@lists.denx.de \
    --cc=uboot-snps-arc@synopsys.com \
    --cc=vigneshr@ti.com \
    --cc=weijie.gao@mediatek.com \
    --cc=xypron.glpk@gmx.de \
    --cc=ye.li@nxp.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox