linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group
@ 2023-05-12  6:49 Martin Hundebøll
  2023-05-12  9:24 ` Dmitry Rokosov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Martin Hundebøll @ 2023-05-12  6:49 UTC (permalink / raw)
  To: Linus Walleij, Neil Armstrong, Kevin Hilman, Jerome Brunet,
	Martin Blumenstingl, Xingyu Chen, Yixun Lan
  Cc: Martin Hundebøll, stable, linux-gpio, linux-arm-kernel,
	linux-amlogic, linux-kernel

Without this, the gpio cannot be explicitly mux'ed to its gpio function.

Fixes: 83c566806a68a ("pinctrl: meson-axg: Add new pinctrl driver for Meson AXG SoC")
Cc: stable@vger.kernel.org
Signed-off-by: Martin Hundebøll <martin@geanix.com>
---
Changes since first mail:
 * Added Cc: stable to commit message
 * Expanded To: and Cc: with full list from get_maintainers.pl

 drivers/pinctrl/meson/pinctrl-meson-axg.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pinctrl/meson/pinctrl-meson-axg.c b/drivers/pinctrl/meson/pinctrl-meson-axg.c
index 7bfecdfba177..d249a035c2b9 100644
--- a/drivers/pinctrl/meson/pinctrl-meson-axg.c
+++ b/drivers/pinctrl/meson/pinctrl-meson-axg.c
@@ -400,6 +400,7 @@ static struct meson_pmx_group meson_axg_periphs_groups[] = {
 	GPIO_GROUP(GPIOA_15),
 	GPIO_GROUP(GPIOA_16),
 	GPIO_GROUP(GPIOA_17),
+	GPIO_GROUP(GPIOA_18),
 	GPIO_GROUP(GPIOA_19),
 	GPIO_GROUP(GPIOA_20),
 
-- 
2.34.1


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

* Re: [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group
  2023-05-12  6:49 [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group Martin Hundebøll
@ 2023-05-12  9:24 ` Dmitry Rokosov
  2023-05-12 10:11 ` Neil Armstrong
  2023-05-16 13:01 ` Linus Walleij
  2 siblings, 0 replies; 4+ messages in thread
From: Dmitry Rokosov @ 2023-05-12  9:24 UTC (permalink / raw)
  To: Martin Hundebøll
  Cc: Linus Walleij, Neil Armstrong, Kevin Hilman, Jerome Brunet,
	Martin Blumenstingl, Xingyu Chen, Yixun Lan, stable, linux-gpio,
	linux-arm-kernel, linux-amlogic, linux-kernel

On Fri, May 12, 2023 at 08:49:25AM +0200, Martin Hundebøll wrote:
> Without this, the gpio cannot be explicitly mux'ed to its gpio function.
> 
> Fixes: 83c566806a68a ("pinctrl: meson-axg: Add new pinctrl driver for Meson AXG SoC")
> Cc: stable@vger.kernel.org
> Signed-off-by: Martin Hundebøll <martin@geanix.com>

Reviewed-by: Dmitry Rokosov <ddrokosov@sberdevices.ru>

> ---
> Changes since first mail:
>  * Added Cc: stable to commit message
>  * Expanded To: and Cc: with full list from get_maintainers.pl
> 
>  drivers/pinctrl/meson/pinctrl-meson-axg.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/pinctrl/meson/pinctrl-meson-axg.c b/drivers/pinctrl/meson/pinctrl-meson-axg.c
> index 7bfecdfba177..d249a035c2b9 100644
> --- a/drivers/pinctrl/meson/pinctrl-meson-axg.c
> +++ b/drivers/pinctrl/meson/pinctrl-meson-axg.c
> @@ -400,6 +400,7 @@ static struct meson_pmx_group meson_axg_periphs_groups[] = {
>  	GPIO_GROUP(GPIOA_15),
>  	GPIO_GROUP(GPIOA_16),
>  	GPIO_GROUP(GPIOA_17),
> +	GPIO_GROUP(GPIOA_18),
>  	GPIO_GROUP(GPIOA_19),
>  	GPIO_GROUP(GPIOA_20),
>  
> -- 
> 2.34.1
> 
> 
> _______________________________________________
> linux-amlogic mailing list
> linux-amlogic@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-amlogic

-- 
Thank you,
Dmitry

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

* Re: [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group
  2023-05-12  6:49 [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group Martin Hundebøll
  2023-05-12  9:24 ` Dmitry Rokosov
@ 2023-05-12 10:11 ` Neil Armstrong
  2023-05-16 13:01 ` Linus Walleij
  2 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2023-05-12 10:11 UTC (permalink / raw)
  To: Martin Hundebøll, Linus Walleij, Kevin Hilman, Jerome Brunet,
	Martin Blumenstingl, Xingyu Chen, Yixun Lan
  Cc: stable, linux-gpio, linux-arm-kernel, linux-amlogic, linux-kernel

On 12/05/2023 08:49, Martin Hundebøll wrote:
> Without this, the gpio cannot be explicitly mux'ed to its gpio function.
> 
> Fixes: 83c566806a68a ("pinctrl: meson-axg: Add new pinctrl driver for Meson AXG SoC")
> Cc: stable@vger.kernel.org
> Signed-off-by: Martin Hundebøll <martin@geanix.com>
> ---
> Changes since first mail:
>   * Added Cc: stable to commit message
>   * Expanded To: and Cc: with full list from get_maintainers.pl
> 
>   drivers/pinctrl/meson/pinctrl-meson-axg.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/pinctrl/meson/pinctrl-meson-axg.c b/drivers/pinctrl/meson/pinctrl-meson-axg.c
> index 7bfecdfba177..d249a035c2b9 100644
> --- a/drivers/pinctrl/meson/pinctrl-meson-axg.c
> +++ b/drivers/pinctrl/meson/pinctrl-meson-axg.c
> @@ -400,6 +400,7 @@ static struct meson_pmx_group meson_axg_periphs_groups[] = {
>   	GPIO_GROUP(GPIOA_15),
>   	GPIO_GROUP(GPIOA_16),
>   	GPIO_GROUP(GPIOA_17),
> +	GPIO_GROUP(GPIOA_18),
>   	GPIO_GROUP(GPIOA_19),
>   	GPIO_GROUP(GPIOA_20),
>   

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

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

* Re: [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group
  2023-05-12  6:49 [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group Martin Hundebøll
  2023-05-12  9:24 ` Dmitry Rokosov
  2023-05-12 10:11 ` Neil Armstrong
@ 2023-05-16 13:01 ` Linus Walleij
  2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2023-05-16 13:01 UTC (permalink / raw)
  To: Martin Hundebøll
  Cc: Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl,
	Xingyu Chen, Yixun Lan, stable, linux-gpio, linux-arm-kernel,
	linux-amlogic, linux-kernel

On Fri, May 12, 2023 at 8:49 AM Martin Hundebøll <martin@geanix.com> wrote:

> Without this, the gpio cannot be explicitly mux'ed to its gpio function.
>
> Fixes: 83c566806a68a ("pinctrl: meson-axg: Add new pinctrl driver for Meson AXG SoC")
> Cc: stable@vger.kernel.org
> Signed-off-by: Martin Hundebøll <martin@geanix.com>

Patch applied for fixes.

Yours,
Linus Walleij

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

end of thread, other threads:[~2023-05-16 13:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-12  6:49 [PATCH RESEND] pinctrl: meson-axg: add missing GPIOA_18 gpio group Martin Hundebøll
2023-05-12  9:24 ` Dmitry Rokosov
2023-05-12 10:11 ` Neil Armstrong
2023-05-16 13:01 ` Linus Walleij

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).