Skip to content

Commit 5921b25

Browse files
krzklinusw
authored andcommitted
pinctrl: qcom: sm8450-lpass-lpi: correct swr_rx_data group
According to hardware programming guide, the swr_rx_data pin group has only two pins (GPIO5 and GPIO6). This is also visible in "struct sm8450_groups" in the driver - GPIO15 does not have swr_rx_data function. Fixes: ec1652f ("pinctrl: qcom: Add sm8450 lpass lpi pinctrl driver") Cc: <[email protected]> Signed-off-by: Krzysztof Kozlowski <[email protected]> Reviewed-by: Konrad Dybcio <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Linus Walleij <[email protected]>
1 parent 606d4ef commit 5921b25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/qcom/pinctrl-sm8450-lpass-lpi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static const struct pinctrl_pin_desc sm8450_lpi_pins[] = {
105105
static const char * const swr_tx_clk_groups[] = { "gpio0" };
106106
static const char * const swr_tx_data_groups[] = { "gpio1", "gpio2", "gpio14" };
107107
static const char * const swr_rx_clk_groups[] = { "gpio3" };
108-
static const char * const swr_rx_data_groups[] = { "gpio4", "gpio5", "gpio15" };
108+
static const char * const swr_rx_data_groups[] = { "gpio4", "gpio5" };
109109
static const char * const dmic1_clk_groups[] = { "gpio6" };
110110
static const char * const dmic1_data_groups[] = { "gpio7" };
111111
static const char * const dmic2_clk_groups[] = { "gpio8" };

0 commit comments

Comments
 (0)