linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] regmap: Fix REGMAP selections
@ 2023-07-06 11:42 Geert Uytterhoeven
  2023-07-06 11:42 ` [PATCH 1/3] regmap: Replace "default y if" by select Geert Uytterhoeven
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-07-06 11:42 UTC (permalink / raw)
  To: Mark Brown, Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones,
	Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Benjamin Gray,
	Christophe Leroy
  Cc: alsa-devel, linux-kernel, Geert Uytterhoeven

	Hi all,

This patch series fixes several missing selects related to REGMAP.

The first patch fixes a serious thinko I made when making the regmap
KUnit test depend on REGMAP.

The last two patches fix missing selects I discovered when diving deeper
into the REGMAP_* => REGMAP logic.

Thanks for your comments!

Geert Uytterhoeven (3):
  regmap: Replace "default y if" by select
  regmap: REGMAP_SLIMBUS should select REGMAP
  ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ

 drivers/base/regmap/Kconfig | 16 +++++++++++++++-
 drivers/mfd/Kconfig         |  1 -
 sound/soc/codecs/Kconfig    |  1 +
 3 files changed, 16 insertions(+), 2 deletions(-)

-- 
2.34.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH 1/3] regmap: Replace "default y if" by select
  2023-07-06 11:42 [PATCH 0/3] regmap: Fix REGMAP selections Geert Uytterhoeven
@ 2023-07-06 11:42 ` Geert Uytterhoeven
  2023-07-06 12:33   ` Mark Brown
  2023-07-06 11:42 ` [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP Geert Uytterhoeven
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-07-06 11:42 UTC (permalink / raw)
  To: Mark Brown, Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones,
	Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Benjamin Gray,
	Christophe Leroy
  Cc: alsa-devel, linux-kernel, Geert Uytterhoeven

Merely setting the default to enabled is no guarantee that a Kconfig
option is actually enabled.  While this works for an invisible option,
the user can still disable it manually if the option is visible.
Hence since the REGMAP option was made visible if KUNIT_ALL_TESTS is
enabled, the user can now manually disable REGMAP, causing build
failures if any of the REGMAP_* configuration options are enabled.

Fix this by replacing "default y if ..." by individual "select REGMAP"
statements for all users.

Fixes: 70a640c0efa76674 ("regmap: REGMAP_KUNIT should not select REGMAP")
Reported-by: Benjamin Gray <bgray@linux.ibm.com>
Closes: https://lore.kernel.org/r/20230705003024.1486757-1-bgray@linux.ibm.com
Reported-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Closes: https://lore.kernel.org/r/d8437dd4-63b6-13fb-22fd-9b92c661071c@csgroup.eu
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 drivers/base/regmap/Kconfig | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/drivers/base/regmap/Kconfig b/drivers/base/regmap/Kconfig
index 0db2021f7477f2ab..e25cc619c75de3d9 100644
--- a/drivers/base/regmap/Kconfig
+++ b/drivers/base/regmap/Kconfig
@@ -5,7 +5,6 @@
 
 config REGMAP
 	bool "Register Map support" if KUNIT_ALL_TESTS
-	default y if (REGMAP_I2C || REGMAP_SPI || REGMAP_SPMI || REGMAP_W1 || REGMAP_AC97 || REGMAP_MMIO || REGMAP_IRQ || REGMAP_SOUNDWIRE || REGMAP_SOUNDWIRE_MBQ || REGMAP_SCCB || REGMAP_I3C || REGMAP_SPI_AVMM || REGMAP_MDIO || REGMAP_FSI)
 	select IRQ_DOMAIN if REGMAP_IRQ
 	select MDIO_BUS if REGMAP_MDIO
 	help
@@ -25,10 +24,12 @@ config REGMAP_KUNIT
 
 config REGMAP_AC97
 	tristate
+	select REGMAP
 
 config REGMAP_I2C
 	tristate
 	depends on I2C
+	select REGMAP
 
 config REGMAP_SLIMBUS
 	tristate
@@ -37,23 +38,29 @@ config REGMAP_SLIMBUS
 config REGMAP_SPI
 	tristate
 	depends on SPI
+	select REGMAP
 
 config REGMAP_SPMI
 	tristate
 	depends on SPMI
+	select REGMAP
 
 config REGMAP_W1
 	tristate
 	depends on W1
+	select REGMAP
 
 config REGMAP_MDIO
 	tristate
+	select REGMAP
 
 config REGMAP_MMIO
 	tristate
+	select REGMAP
 
 config REGMAP_IRQ
 	bool
+	select REGMAP
 
 config REGMAP_RAM
 	tristate
@@ -61,23 +68,29 @@ config REGMAP_RAM
 config REGMAP_SOUNDWIRE
 	tristate
 	depends on SOUNDWIRE
+	select REGMAP
 
 config REGMAP_SOUNDWIRE_MBQ
 	tristate
 	depends on SOUNDWIRE
+	select REGMAP
 
 config REGMAP_SCCB
 	tristate
 	depends on I2C
+	select REGMAP
 
 config REGMAP_I3C
 	tristate
 	depends on I3C
+	select REGMAP
 
 config REGMAP_SPI_AVMM
 	tristate
 	depends on SPI
+	select REGMAP
 
 config REGMAP_FSI
 	tristate
 	depends on FSI
+	select REGMAP
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP
  2023-07-06 11:42 [PATCH 0/3] regmap: Fix REGMAP selections Geert Uytterhoeven
  2023-07-06 11:42 ` [PATCH 1/3] regmap: Replace "default y if" by select Geert Uytterhoeven
@ 2023-07-06 11:42 ` Geert Uytterhoeven
  2023-07-06 12:18   ` Mark Brown
  2023-07-12 11:58   ` Lee Jones
  2023-07-06 11:42 ` [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ Geert Uytterhoeven
  2023-07-11 20:44 ` (subset) [PATCH 0/3] regmap: Fix REGMAP selections Mark Brown
  3 siblings, 2 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-07-06 11:42 UTC (permalink / raw)
  To: Mark Brown, Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones,
	Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Benjamin Gray,
	Christophe Leroy
  Cc: alsa-devel, linux-kernel, Geert Uytterhoeven

If CONFIG_SND_SOC_WCD934X=y, CONFIG_COMPILE_TEST=y,
CONFIG_MFD_WCD934X=n, CONFIG_REGMAP=n:

    sound/soc/codecs/wcd934x.c:518:38: error: array type has incomplete element type ‘struct regmap_range_cfg’
      518 | static const struct regmap_range_cfg wcd934x_ifc_ranges[] = {
	  |                                      ^~~~~~~~~~~~~~~~~~

Fix this by making REGMAP_SLIMBUS select REGMAP.

Drop the selection of REGMAP by MFD_WCD934X, as this is not needed
(now both REGMAP_SLIMBUS and REGMAP_IRQ select REGMAP).

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 drivers/base/regmap/Kconfig | 1 +
 drivers/mfd/Kconfig         | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/base/regmap/Kconfig b/drivers/base/regmap/Kconfig
index e25cc619c75de3d9..c3a260ed4e864959 100644
--- a/drivers/base/regmap/Kconfig
+++ b/drivers/base/regmap/Kconfig
@@ -34,6 +34,7 @@ config REGMAP_I2C
 config REGMAP_SLIMBUS
 	tristate
 	depends on SLIMBUS
+	select REGMAP
 
 config REGMAP_SPI
 	tristate
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index 0b6af476f554a191..5857dad2c64828fa 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -2121,7 +2121,6 @@ config MFD_STMFX
 config MFD_WCD934X
 	tristate "Support for WCD9340/WCD9341 Codec"
 	depends on SLIMBUS
-	select REGMAP
 	select REGMAP_SLIMBUS
 	select REGMAP_IRQ
 	select MFD_CORE
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ
  2023-07-06 11:42 [PATCH 0/3] regmap: Fix REGMAP selections Geert Uytterhoeven
  2023-07-06 11:42 ` [PATCH 1/3] regmap: Replace "default y if" by select Geert Uytterhoeven
  2023-07-06 11:42 ` [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP Geert Uytterhoeven
@ 2023-07-06 11:42 ` Geert Uytterhoeven
  2023-07-06 12:09   ` Mark Brown
  2023-07-11 20:44 ` (subset) [PATCH 0/3] regmap: Fix REGMAP selections Mark Brown
  3 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-07-06 11:42 UTC (permalink / raw)
  To: Mark Brown, Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones,
	Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Benjamin Gray,
	Christophe Leroy
  Cc: alsa-devel, linux-kernel, Geert Uytterhoeven

If CONFIG_SND_SOC_WCD934X=y, CONFIG_COMPILE_TEST=y,
CONFIG_MFD_WCD934X=n, CONFIG_REGMAP_IRQ=n:

    aarch64-linux-gnu-ld: sound/soc/codecs/wcd934x.o: in function `wcd934x_codec_probe':
    wcd934x.c:(.text+0x33cc): undefined reference to `regmap_irq_get_virq'
    aarch64-linux-gnu-ld: sound/soc/codecs/wcd934x.o: in function `wcd934x_comp_probe':
    wcd934x.c:(.text+0x4cb0): undefined reference to `regmap_irq_get_virq'
    aarch64-linux-gnu-ld: wcd934x.c:(.text+0x4cc0): undefined reference to `regmap_irq_get_virq'
    aarch64-linux-gnu-ld: wcd934x.c:(.text+0x4cd0): undefined reference to `regmap_irq_get_virq'
    aarch64-linux-gnu-ld: wcd934x.c:(.text+0x4ce0): undefined reference to `regmap_irq_get_virq'
    aarch64-linux-gnu-ld: sound/soc/codecs/wcd934x.o:wcd934x.c:(.text+0x4cf0): more undefined references to `regmap_irq_get_virq' follow

Fix this by making SND_SOC_WCD934X select REGMAP_IRQ.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
---
 sound/soc/codecs/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig
index 2a62dbd5339e4a3a..958499050c8b6a3f 100644
--- a/sound/soc/codecs/Kconfig
+++ b/sound/soc/codecs/Kconfig
@@ -1942,6 +1942,7 @@ config SND_SOC_WCD934X
 	tristate "WCD9340/WCD9341 Codec"
 	depends on COMMON_CLK
 	depends on SLIMBUS
+	select REGMAP_IRQ
 	select REGMAP_SLIMBUS
 	select SND_SOC_WCD_MBHC
 	depends on MFD_WCD934X || COMPILE_TEST
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ
  2023-07-06 11:42 ` [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ Geert Uytterhoeven
@ 2023-07-06 12:09   ` Mark Brown
  2023-07-06 12:15     ` Geert Uytterhoeven
  0 siblings, 1 reply; 12+ messages in thread
From: Mark Brown @ 2023-07-06 12:09 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	alsa-devel, linux-kernel

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

On Thu, Jul 06, 2023 at 01:42:04PM +0200, Geert Uytterhoeven wrote:
> If CONFIG_SND_SOC_WCD934X=y, CONFIG_COMPILE_TEST=y,
> CONFIG_MFD_WCD934X=n, CONFIG_REGMAP_IRQ=n:

There appears to be at best a marginal relationship between this and the
rest of the series, please don't group things needlessly like this, it
just creates spurious dependencies which complicates getting things
merged.

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ
  2023-07-06 12:09   ` Mark Brown
@ 2023-07-06 12:15     ` Geert Uytterhoeven
  2023-07-06 12:18       ` Mark Brown
  0 siblings, 1 reply; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-07-06 12:15 UTC (permalink / raw)
  To: Mark Brown
  Cc: Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	alsa-devel, linux-kernel

Hi Mark,

On Thu, Jul 6, 2023 at 2:09 PM Mark Brown <broonie@kernel.org> wrote:
> On Thu, Jul 06, 2023 at 01:42:04PM +0200, Geert Uytterhoeven wrote:
> > If CONFIG_SND_SOC_WCD934X=y, CONFIG_COMPILE_TEST=y,
> > CONFIG_MFD_WCD934X=n, CONFIG_REGMAP_IRQ=n:
>
> There appears to be at best a marginal relationship between this and the
> rest of the series, please don't group things needlessly like this, it
> just creates spurious dependencies which complicates getting things
> merged.

Well, unless you have CONFIG_REGMAP=y due to some other reason, you
won't reach the mentioned link error without applying [PATCH 2/3] first.

It doesn't hurt to apply this patch independently, though.
Do you want me to resend it (to your sound-persona) as a separate patch?

Thanks!

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP
  2023-07-06 11:42 ` [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP Geert Uytterhoeven
@ 2023-07-06 12:18   ` Mark Brown
  2023-07-06 12:28     ` Geert Uytterhoeven
  2023-07-12 11:58   ` Lee Jones
  1 sibling, 1 reply; 12+ messages in thread
From: Mark Brown @ 2023-07-06 12:18 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	alsa-devel, linux-kernel

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

On Thu, Jul 06, 2023 at 01:42:03PM +0200, Geert Uytterhoeven wrote:

> Fix this by making REGMAP_SLIMBUS select REGMAP.

Why is this being done as a separate patch?

> Drop the selection of REGMAP by MFD_WCD934X, as this is not needed
> (now both REGMAP_SLIMBUS and REGMAP_IRQ select REGMAP).

This has always been redudnant, why is it mixed into this patch?

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ
  2023-07-06 12:15     ` Geert Uytterhoeven
@ 2023-07-06 12:18       ` Mark Brown
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2023-07-06 12:18 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	alsa-devel, linux-kernel

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

On Thu, Jul 06, 2023 at 02:15:57PM +0200, Geert Uytterhoeven wrote:

> Well, unless you have CONFIG_REGMAP=y due to some other reason, you
> won't reach the mentioned link error without applying [PATCH 2/3] first.

> It doesn't hurt to apply this patch independently, though.
> Do you want me to resend it (to your sound-persona) as a separate patch?

I've already split it out.

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP
  2023-07-06 12:18   ` Mark Brown
@ 2023-07-06 12:28     ` Geert Uytterhoeven
  0 siblings, 0 replies; 12+ messages in thread
From: Geert Uytterhoeven @ 2023-07-06 12:28 UTC (permalink / raw)
  To: Mark Brown
  Cc: Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	alsa-devel, linux-kernel

Hi Mark,

On Thu, Jul 6, 2023 at 2:18 PM Mark Brown <broonie@kernel.org> wrote:
> On Thu, Jul 06, 2023 at 01:42:03PM +0200, Geert Uytterhoeven wrote:
>
> > Fix this by making REGMAP_SLIMBUS select REGMAP.
>
> Why is this being done as a separate patch?

Because this is a new select, which was not handled through the
"default y" before.  [PATCH 1/3] converted only the existing ones.

> > Drop the selection of REGMAP by MFD_WCD934X, as this is not needed
> > (now both REGMAP_SLIMBUS and REGMAP_IRQ select REGMAP).
>
> This has always been redudnant, why is it mixed into this patch?

Because it is related to REGMAP_SLIMBUS selecting REGMAP.
I agree it was redundant before, as REGMAP_IRQ already selected REGMAP.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 1/3] regmap: Replace "default y if" by select
  2023-07-06 11:42 ` [PATCH 1/3] regmap: Replace "default y if" by select Geert Uytterhoeven
@ 2023-07-06 12:33   ` Mark Brown
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2023-07-06 12:33 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	alsa-devel, linux-kernel

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

On Thu, Jul 06, 2023 at 01:42:02PM +0200, Geert Uytterhoeven wrote:

> Merely setting the default to enabled is no guarantee that a Kconfig
> option is actually enabled.  While this works for an invisible option,
> the user can still disable it manually if the option is visible.
> Hence since the REGMAP option was made visible if KUNIT_ALL_TESTS is
> enabled, the user can now manually disable REGMAP, causing build
> failures if any of the REGMAP_* configuration options are enabled.
> 
> Fix this by replacing "default y if ..." by individual "select REGMAP"
> statements for all users.

I already have a separate patch which will go after the merge window
that will move the KUnit visible option to a separate Kconfig since the
current bodge to work around your desire to not have KUnit enable
anything automatically had really substantial usability issues anyway.

I'm getting fed up with all the problems that these KUNIT_ALL_TESTS
issues TBH, the inital patch here seriously damaged the usability.

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: (subset) [PATCH 0/3] regmap: Fix REGMAP selections
  2023-07-06 11:42 [PATCH 0/3] regmap: Fix REGMAP selections Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2023-07-06 11:42 ` [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ Geert Uytterhoeven
@ 2023-07-11 20:44 ` Mark Brown
  3 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2023-07-11 20:44 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Rafael J . Wysocki, Lee Jones, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	Geert Uytterhoeven
  Cc: alsa-devel, linux-kernel

On Thu, 06 Jul 2023 13:42:01 +0200, Geert Uytterhoeven wrote:
> 	Hi all,
> 
> This patch series fixes several missing selects related to REGMAP.
> 
> The first patch fixes a serious thinko I made when making the regmap
> KUnit test depend on REGMAP.
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ
      commit: e231cd833f6463e9a1d54acae9614b513c74d45e

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP
  2023-07-06 11:42 ` [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP Geert Uytterhoeven
  2023-07-06 12:18   ` Mark Brown
@ 2023-07-12 11:58   ` Lee Jones
  1 sibling, 0 replies; 12+ messages in thread
From: Lee Jones @ 2023-07-12 11:58 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Mark Brown, Greg Kroah-Hartman, Rafael J . Wysocki, Liam Girdwood,
	Jaroslav Kysela, Takashi Iwai, Benjamin Gray, Christophe Leroy,
	alsa-devel, linux-kernel

On Thu, 06 Jul 2023, Geert Uytterhoeven wrote:

> If CONFIG_SND_SOC_WCD934X=y, CONFIG_COMPILE_TEST=y,
> CONFIG_MFD_WCD934X=n, CONFIG_REGMAP=n:
> 
>     sound/soc/codecs/wcd934x.c:518:38: error: array type has incomplete element type ‘struct regmap_range_cfg’
>       518 | static const struct regmap_range_cfg wcd934x_ifc_ranges[] = {
> 	  |                                      ^~~~~~~~~~~~~~~~~~
> 
> Fix this by making REGMAP_SLIMBUS select REGMAP.
> 
> Drop the selection of REGMAP by MFD_WCD934X, as this is not needed
> (now both REGMAP_SLIMBUS and REGMAP_IRQ select REGMAP).
> 
> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> ---
>  drivers/base/regmap/Kconfig | 1 +
>  drivers/mfd/Kconfig         | 1 -

Acked-by: Lee Jones <lee@kernel.org>

>  2 files changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/base/regmap/Kconfig b/drivers/base/regmap/Kconfig
> index e25cc619c75de3d9..c3a260ed4e864959 100644
> --- a/drivers/base/regmap/Kconfig
> +++ b/drivers/base/regmap/Kconfig
> @@ -34,6 +34,7 @@ config REGMAP_I2C
>  config REGMAP_SLIMBUS
>  	tristate
>  	depends on SLIMBUS
> +	select REGMAP
>  
>  config REGMAP_SPI
>  	tristate
> diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
> index 0b6af476f554a191..5857dad2c64828fa 100644
> --- a/drivers/mfd/Kconfig
> +++ b/drivers/mfd/Kconfig
> @@ -2121,7 +2121,6 @@ config MFD_STMFX
>  config MFD_WCD934X
>  	tristate "Support for WCD9340/WCD9341 Codec"
>  	depends on SLIMBUS
> -	select REGMAP
>  	select REGMAP_SLIMBUS
>  	select REGMAP_IRQ
>  	select MFD_CORE
> -- 
> 2.34.1
> 

-- 
Lee Jones [李琼斯]

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2023-07-12 11:58 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-06 11:42 [PATCH 0/3] regmap: Fix REGMAP selections Geert Uytterhoeven
2023-07-06 11:42 ` [PATCH 1/3] regmap: Replace "default y if" by select Geert Uytterhoeven
2023-07-06 12:33   ` Mark Brown
2023-07-06 11:42 ` [PATCH 2/3] regmap: REGMAP_SLIMBUS should select REGMAP Geert Uytterhoeven
2023-07-06 12:18   ` Mark Brown
2023-07-06 12:28     ` Geert Uytterhoeven
2023-07-12 11:58   ` Lee Jones
2023-07-06 11:42 ` [PATCH 3/3] ASoC: codecs: SND_SOC_WCD934X should select REGMAP_IRQ Geert Uytterhoeven
2023-07-06 12:09   ` Mark Brown
2023-07-06 12:15     ` Geert Uytterhoeven
2023-07-06 12:18       ` Mark Brown
2023-07-11 20:44 ` (subset) [PATCH 0/3] regmap: Fix REGMAP selections Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).