diff options
author | Yuantian Tang <andy.tang@nxp.com> | 2019-10-10 11:33:34 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-05 00:33:10 +0300 |
commit | 4e6d356ac7f882aac45f9f504d0837cf788e772e (patch) | |
tree | 8f7aa44e863518922b237ad761f3988107bef284 | |
parent | cded189f3c0c9a4001f1a41eba00692a7ac9d0fd (diff) | |
download | linux-4e6d356ac7f882aac45f9f504d0837cf788e772e.tar.xz |
arm64: dts: ls1028a: fix a compatible issue
[ Upstream commit 7eb3894b2fac978f811684e3ccb3cb0ad7820bef ]
The I2C multiplexer used on ls1028aqds is PCA9547, not PCA9847.
If the wrong compatible was used, this chip will not be able to
be probed correctly and hence fail to work.
Signed-off-by: Yuantian Tang <andy.tang@nxp.com>
Acked-by: Li Yang <leoyang.li@nxp.com>
Fixes: 8897f3255c9c ("arm64: dts: Add support for NXP LS1028A SoC")
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts b/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts index de6ef39f3118..fce9343dc017 100644 --- a/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts +++ b/arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts @@ -99,7 +99,7 @@ status = "okay"; i2c-mux@77 { - compatible = "nxp,pca9847"; + compatible = "nxp,pca9547"; reg = <0x77>; #address-cells = <1>; #size-cells = <0>; |