diff mbox series

[v5,1/8] gpio: pxa: disable pinctrl calls for MMP_GPIO

Message ID 20230812-pxa1908-lkml-v5-1-a5d51937ee34@skole.hr
State Accepted
Commit f0575116507b981e6a810e78ce3c9040395b958b
Headers show
Series [v5,1/8] gpio: pxa: disable pinctrl calls for MMP_GPIO | expand

Commit Message

Duje Mihanović Aug. 12, 2023, 10:25 a.m. UTC
Similarly to PXA3xx and MMP2, pinctrl-single isn't capable of setting
pin direction on MMP either.

Fixes: a770d946371e ("gpio: pxa: add pin control gpio direction and request")
Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
Reviewed-by: Andy Shevchenko <andy@kernel.org>
---
 drivers/gpio/gpio-pxa.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Linus Walleij Aug. 15, 2023, 8:32 a.m. UTC | #1
On Sat, Aug 12, 2023 at 12:26 PM Duje Mihanović <duje.mihanovic@skole.hr> wrote:

> Similarly to PXA3xx and MMP2, pinctrl-single isn't capable of setting
> pin direction on MMP either.
>
> Fixes: a770d946371e ("gpio: pxa: add pin control gpio direction and request")
> Signed-off-by: Duje Mihanović <duje.mihanovic@skole.hr>
> Reviewed-by: Andy Shevchenko <andy@kernel.org>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-pxa.c b/drivers/gpio/gpio-pxa.c
index a1630ed4b741..d92650aecb06 100644
--- a/drivers/gpio/gpio-pxa.c
+++ b/drivers/gpio/gpio-pxa.c
@@ -238,6 +238,7 @@  static bool pxa_gpio_has_pinctrl(void)
 	switch (gpio_type) {
 	case PXA3XX_GPIO:
 	case MMP2_GPIO:
+	case MMP_GPIO:
 		return false;
 
 	default: