Message ID | 20220325154048.467245-6-quic_jaehyoo@quicinc.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2,1/5] ARM: dts: aspeed-g6: remove FWQSPID group in pinctrl dtsi | expand |
On Sat, 26 Mar 2022, at 02:10, Jae Hyun Yoo wrote: > Fix incorrect function mappings in pinctrl_qspi1_default and > pinctrl_qspi2_default since there function should be SPI1 and > SPI2 respectively. > > Signed-off-by: Jae Hyun Yoo <quic_jaehyoo@quicinc.com> > Fixes: f510f04c8c83 ("ARM: dts: aspeed: Add AST2600 pinmux nodes") Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
On 3/27/2022 8:16 PM, Andrew Jeffery wrote: > > > On Sat, 26 Mar 2022, at 02:10, Jae Hyun Yoo wrote: >> Fix incorrect function mappings in pinctrl_qspi1_default and >> pinctrl_qspi2_default since there function should be SPI1 and >> SPI2 respectively. >> >> Signed-off-by: Jae Hyun Yoo <quic_jaehyoo@quicinc.com> >> Fixes: f510f04c8c83 ("ARM: dts: aspeed: Add AST2600 pinmux nodes") > > Reviewed-by: Andrew Jeffery <andrew@aj.id.au> Thanks for your review! -Jae
diff --git a/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi b/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi index 47c3fb137cbc..7cd4f075e325 100644 --- a/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi +++ b/arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi @@ -653,12 +653,12 @@ pinctrl_pwm9g1_default: pwm9g1_default { }; pinctrl_qspi1_default: qspi1_default { - function = "QSPI1"; + function = "SPI1"; groups = "QSPI1"; }; pinctrl_qspi2_default: qspi2_default { - function = "QSPI2"; + function = "SPI2"; groups = "QSPI2"; };
Fix incorrect function mappings in pinctrl_qspi1_default and pinctrl_qspi2_default since there function should be SPI1 and SPI2 respectively. Signed-off-by: Jae Hyun Yoo <quic_jaehyoo@quicinc.com> Fixes: f510f04c8c83 ("ARM: dts: aspeed: Add AST2600 pinmux nodes") --- Changes in v2: * None. arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)