public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers
@ 2023-04-12 18:38 Jonathan Neuschäfer
  2023-04-12 18:38 ` [PATCH v3 2/2] soc: nuvoton: Add "select REGMAP" to WPCM450 SoC driver Jonathan Neuschäfer
  2023-04-17  7:25 ` [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers Geert Uytterhoeven
  0 siblings, 2 replies; 7+ messages in thread
From: Jonathan Neuschäfer @ 2023-04-12 18:38 UTC (permalink / raw)
  To: openbmc
  Cc: linux-kernel, Geert Uytterhoeven, Jonathan Neuschäfer,
	Joel Stanley, Paul Menzel, Arnd Bergmann

Add a menu "Nuvoton SoC drivers" to make it easier to add other Nuvoton
SoC drivers later on and to prevent asking about the Nuvoton WPCM450 SoC
driver when configuring a kernel without support for Nuvoton SoCs.

Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/lkml/CAMuHMdWo5vHCeE6BeSHrUy12uT7_wFhW-VbQmQ5u+4Q8c7-wYQ@mail.gmail.com/
Fixes: 77b8c67b5637 ("soc: nuvoton: Add SoC info driver for WPCM450")
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
---
v3:
- Split the commit into two
- Reword the commit messages a bit

v2:
- https://lore.kernel.org/lkml/20230212215234.2608565-1-j.neuschaefer@gmx.net/
- Commit message improvements, as suggested by Geert Uytterhoeven.
- Add Link after Reviewed-by, as checkpatch.pl now suggests
---
 drivers/soc/nuvoton/Kconfig | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/soc/nuvoton/Kconfig b/drivers/soc/nuvoton/Kconfig
index df46182088ec2..853392c8a9151 100644
--- a/drivers/soc/nuvoton/Kconfig
+++ b/drivers/soc/nuvoton/Kconfig
@@ -1,5 +1,8 @@
 # SPDX-License-Identifier: GPL-2.0
-menuconfig WPCM450_SOC
+menu "Nuvoton SoC drivers"
+	depends on ARCH_NPCM || COMPILE_TEST
+
+config WPCM450_SOC
 	tristate "Nuvoton WPCM450 SoC driver"
 	default y if ARCH_WPCM450
 	select SOC_BUS
@@ -9,3 +12,5 @@ menuconfig WPCM450_SOC

 	  This driver provides information such as the SoC model and
 	  revision.
+
+endmenu
--
2.39.2


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

* [PATCH v3 2/2] soc: nuvoton: Add "select REGMAP" to WPCM450 SoC driver
  2023-04-12 18:38 [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers Jonathan Neuschäfer
@ 2023-04-12 18:38 ` Jonathan Neuschäfer
  2023-04-17  7:26   ` Geert Uytterhoeven
  2023-04-17  7:25 ` [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers Geert Uytterhoeven
  1 sibling, 1 reply; 7+ messages in thread
From: Jonathan Neuschäfer @ 2023-04-12 18:38 UTC (permalink / raw)
  To: openbmc
  Cc: linux-kernel, Geert Uytterhoeven, Jonathan Neuschäfer,
	Joel Stanley, Paul Menzel, Arnd Bergmann

Select CONFIG_REGMAP from CONFIG_WPCM450_SOC, because the driver relies
on regmap to work.

Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Link: https://lore.kernel.org/lkml/CAMuHMdWo5vHCeE6BeSHrUy12uT7_wFhW-VbQmQ5u+4Q8c7-wYQ@mail.gmail.com/
Fixes: 77b8c67b5637 ("soc: nuvoton: Add SoC info driver for WPCM450")
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
---
v3:
- Split the commit into two
- Reword the commit messages a bit

v2:
- https://lore.kernel.org/lkml/20230212215234.2608565-1-j.neuschaefer@gmx.net/
- Commit message improvements, as suggested by Geert Uytterhoeven.
- Add Link after Reviewed-by, as checkpatch.pl now suggests
---
 drivers/soc/nuvoton/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/nuvoton/Kconfig b/drivers/soc/nuvoton/Kconfig
index 853392c8a9151..2167d3d739d84 100644
--- a/drivers/soc/nuvoton/Kconfig
+++ b/drivers/soc/nuvoton/Kconfig
@@ -6,6 +6,7 @@ config WPCM450_SOC
 	tristate "Nuvoton WPCM450 SoC driver"
 	default y if ARCH_WPCM450
 	select SOC_BUS
+	select REGMAP
 	help
 	  Say Y here to compile the SoC information driver for Nuvoton
 	  WPCM450 SoCs.
--
2.39.2


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

* Re: [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers
  2023-04-12 18:38 [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers Jonathan Neuschäfer
  2023-04-12 18:38 ` [PATCH v3 2/2] soc: nuvoton: Add "select REGMAP" to WPCM450 SoC driver Jonathan Neuschäfer
@ 2023-04-17  7:25 ` Geert Uytterhoeven
  2023-04-17  7:28   ` Geert Uytterhoeven
  1 sibling, 1 reply; 7+ messages in thread
From: Geert Uytterhoeven @ 2023-04-17  7:25 UTC (permalink / raw)
  To: Jonathan Neuschäfer
  Cc: openbmc, linux-kernel, Joel Stanley, Paul Menzel, Arnd Bergmann

On Wed, Apr 12, 2023 at 8:38 PM Jonathan Neuschäfer
<j.neuschaefer@gmx.net> wrote:
> Add a menu "Nuvoton SoC drivers" to make it easier to add other Nuvoton
> SoC drivers later on and to prevent asking about the Nuvoton WPCM450 SoC
> driver when configuring a kernel without support for Nuvoton SoCs.
>
> Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Link: https://lore.kernel.org/lkml/CAMuHMdWo5vHCeE6BeSHrUy12uT7_wFhW-VbQmQ5u+4Q8c7-wYQ@mail.gmail.com/
> Fixes: 77b8c67b5637 ("soc: nuvoton: Add SoC info driver for WPCM450")
> Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
> ---
> v3:
> - Split the commit into two
> - Reword the commit messages a bit

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

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] 7+ messages in thread

* Re: [PATCH v3 2/2] soc: nuvoton: Add "select REGMAP" to WPCM450 SoC driver
  2023-04-12 18:38 ` [PATCH v3 2/2] soc: nuvoton: Add "select REGMAP" to WPCM450 SoC driver Jonathan Neuschäfer
@ 2023-04-17  7:26   ` Geert Uytterhoeven
  2023-04-17  7:29     ` Geert Uytterhoeven
  0 siblings, 1 reply; 7+ messages in thread
From: Geert Uytterhoeven @ 2023-04-17  7:26 UTC (permalink / raw)
  To: Jonathan Neuschäfer
  Cc: openbmc, linux-kernel, Joel Stanley, Paul Menzel, Arnd Bergmann

On Wed, Apr 12, 2023 at 8:38 PM Jonathan Neuschäfer
<j.neuschaefer@gmx.net> wrote:
> Select CONFIG_REGMAP from CONFIG_WPCM450_SOC, because the driver relies
> on regmap to work.
>
> Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Link: https://lore.kernel.org/lkml/CAMuHMdWo5vHCeE6BeSHrUy12uT7_wFhW-VbQmQ5u+4Q8c7-wYQ@mail.gmail.com/
> Fixes: 77b8c67b5637 ("soc: nuvoton: Add SoC info driver for WPCM450")
> Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
> ---
> v3:
> - Split the commit into two
> - Reword the commit messages a bit

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

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] 7+ messages in thread

* Re: [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers
  2023-04-17  7:25 ` [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers Geert Uytterhoeven
@ 2023-04-17  7:28   ` Geert Uytterhoeven
  2023-04-19 20:55     ` Jonathan Neuschäfer
  0 siblings, 1 reply; 7+ messages in thread
From: Geert Uytterhoeven @ 2023-04-17  7:28 UTC (permalink / raw)
  To: Jonathan Neuschäfer
  Cc: openbmc, linux-kernel, Joel Stanley, Paul Menzel, Arnd Bergmann

On Mon, Apr 17, 2023 at 9:25 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> On Wed, Apr 12, 2023 at 8:38 PM Jonathan Neuschäfer
> <j.neuschaefer@gmx.net> wrote:
> > Add a menu "Nuvoton SoC drivers" to make it easier to add other Nuvoton
> > SoC drivers later on and to prevent asking about the Nuvoton WPCM450 SoC
> > driver when configuring a kernel without support for Nuvoton SoCs.
> >
> > Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> > Link: https://lore.kernel.org/lkml/CAMuHMdWo5vHCeE6BeSHrUy12uT7_wFhW-VbQmQ5u+4Q8c7-wYQ@mail.gmail.com/
> > Fixes: 77b8c67b5637 ("soc: nuvoton: Add SoC info driver for WPCM450")

This reference is wrong, it should be 7dbb4a38bff3.

> > Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>

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] 7+ messages in thread

* Re: [PATCH v3 2/2] soc: nuvoton: Add "select REGMAP" to WPCM450 SoC driver
  2023-04-17  7:26   ` Geert Uytterhoeven
@ 2023-04-17  7:29     ` Geert Uytterhoeven
  0 siblings, 0 replies; 7+ messages in thread
From: Geert Uytterhoeven @ 2023-04-17  7:29 UTC (permalink / raw)
  To: Jonathan Neuschäfer
  Cc: openbmc, linux-kernel, Joel Stanley, Paul Menzel, Arnd Bergmann

On Mon, Apr 17, 2023 at 9:26 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> On Wed, Apr 12, 2023 at 8:38 PM Jonathan Neuschäfer
> <j.neuschaefer@gmx.net> wrote:
> > Select CONFIG_REGMAP from CONFIG_WPCM450_SOC, because the driver relies
> > on regmap to work.
> >
> > Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> > Link: https://lore.kernel.org/lkml/CAMuHMdWo5vHCeE6BeSHrUy12uT7_wFhW-VbQmQ5u+4Q8c7-wYQ@mail.gmail.com/
> > Fixes: 77b8c67b5637 ("soc: nuvoton: Add SoC info driver for WPCM450")

This reference is wrong, it should be 7dbb4a38bff3.

> > Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>

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] 7+ messages in thread

* Re: [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers
  2023-04-17  7:28   ` Geert Uytterhoeven
@ 2023-04-19 20:55     ` Jonathan Neuschäfer
  0 siblings, 0 replies; 7+ messages in thread
From: Jonathan Neuschäfer @ 2023-04-19 20:55 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Jonathan Neuschäfer, openbmc, linux-kernel, Joel Stanley,
	Paul Menzel, Arnd Bergmann

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

On Mon, Apr 17, 2023 at 09:28:47AM +0200, Geert Uytterhoeven wrote:
> On Mon, Apr 17, 2023 at 9:25 AM Geert Uytterhoeven <geert@linux-m68k.org> wrote:
> > On Wed, Apr 12, 2023 at 8:38 PM Jonathan Neuschäfer
> > <j.neuschaefer@gmx.net> wrote:
> > > Add a menu "Nuvoton SoC drivers" to make it easier to add other Nuvoton
> > > SoC drivers later on and to prevent asking about the Nuvoton WPCM450 SoC
> > > driver when configuring a kernel without support for Nuvoton SoCs.
> > >
> > > Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> > > Link: https://lore.kernel.org/lkml/CAMuHMdWo5vHCeE6BeSHrUy12uT7_wFhW-VbQmQ5u+4Q8c7-wYQ@mail.gmail.com/
> > > Fixes: 77b8c67b5637 ("soc: nuvoton: Add SoC info driver for WPCM450")
> 
> This reference is wrong, it should be 7dbb4a38bff3.

Good catch, I picked a local copy of the patch/commit by accident.


Thanks,
Jonathan

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

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

end of thread, other threads:[~2023-04-19 20:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-12 18:38 [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers Jonathan Neuschäfer
2023-04-12 18:38 ` [PATCH v3 2/2] soc: nuvoton: Add "select REGMAP" to WPCM450 SoC driver Jonathan Neuschäfer
2023-04-17  7:26   ` Geert Uytterhoeven
2023-04-17  7:29     ` Geert Uytterhoeven
2023-04-17  7:25 ` [PATCH v3 1/2] soc: nuvoton: Add a menu for Nuvoton SoC drivers Geert Uytterhoeven
2023-04-17  7:28   ` Geert Uytterhoeven
2023-04-19 20:55     ` Jonathan Neuschäfer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox