From ccc41d25590645096bdbf420b43e7c22627b3f59 Mon Sep 17 00:00:00 2001 From: Mikhail Kshevetskiy Date: Fri, 7 Aug 2026 01:05:52 +0300 Subject: [PATCH] pinctrl: airoha: an7583: fix spi group pins pcm pins were used insted of spi pins. This patch fixes an issue. Thanks to Daniel Schwierzeck for noticing it. Fixes: 3ffeb17a9a27 ("pinctrl: airoha: add support for Airoha AN7583 PINs") Signed-off-by: Mikhail Kshevetskiy Signed-off-by: Linus Walleij --- drivers/pinctrl/airoha/pinctrl-airoha.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pinctrl/airoha/pinctrl-airoha.c b/drivers/pinctrl/airoha/pinctrl-airoha.c index 16484e9f12a9..6f6822fce7aa 100644 --- a/drivers/pinctrl/airoha/pinctrl-airoha.c +++ b/drivers/pinctrl/airoha/pinctrl-airoha.c @@ -739,7 +739,7 @@ static const int an7583_jtag_udi_pins[] = { 23, 24, 22, 25, 26 }; static const int an7583_jtag_dfd_pins[] = { 23, 24, 22, 25, 26 }; static const int an7583_pcm1_pins[] = { 10, 11, 12, 13, 14 }; static const int an7583_pcm2_pins[] = { 28, 29, 30, 31, 24 }; -static const int an7583_spi_pins[] = { 28, 29, 30, 31 }; +static const int an7583_spi_pins[] = { 45, 46, 47, 48 }; static const int an7583_spi_quad_pins[] = { 25, 26 }; static const int an7583_spi_cs1_pins[] = { 27 }; static const int an7583_pcm_spi_pins[] = { 28, 29, 30, 31, 10, 11, 12, 13 };