diff options
author | Jae Hyun Yoo <quic_jaehyoo@quicinc.com> | 2022-03-29 10:39:32 -0700 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2022-04-13 11:53:52 +0930 |
commit | 890362d41b244536ab63591f813393f5fdf59ed7 (patch) | |
tree | 9c2718b7a13ef26f802a05fb221a8e80b29e07e0 /arch | |
parent | e194aff0066ddbbea3654b742c1286d914b12492 (diff) | |
download | linux-890362d41b244536ab63591f813393f5fdf59ed7.tar.bz2 |
ARM: dts: aspeed-g6: fix SPI1/SPI2 quad pin group
Fix incorrect function mappings in pinctrl_qspi1_default and
pinctrl_qspi2_default since their function should be SPI1 and
SPI2 respectively.
Fixes: f510f04c8c83 ("ARM: dts: aspeed: Add AST2600 pinmux nodes")
Signed-off-by: Jae Hyun Yoo <quic_jaehyoo@quicinc.com>
Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Link: https://lore.kernel.org/r/20220329173932.2588289-8-quic_jaehyoo@quicinc.com
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
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_qspi1_default: qspi1_default { - function = "QSPI1"; + function = "SPI1"; groups = "QSPI1"; }; pinctrl_qspi2_default: qspi2_default { - function = "QSPI2"; + function = "SPI2"; groups = "QSPI2"; }; |