diff options
author | Andre Przywara <[email protected]> | 2024-03-29 10:38:25 +0000 |
---|---|---|
committer | Jernej Skrabec <[email protected]> | 2024-04-15 23:28:05 +0200 |
commit | 5bdeb3d2e240e599a9cb4315a013e3bd5436447d (patch) | |
tree | ef1080a105f8a7228dbd7d53ecbaeba5aa6742a9 | |
parent | 1428f0c19f9ce06c33f79fff783788444f27ac31 (diff) |
arm64: dts: allwinner: h616: Fix I2C0 pins
Currently we specify the pins for the I2C0 function as PI6 and PI7, even
though they are actually PI5 and PI6. Linux' pinctrl driver and the H616
user manual confirm this.
Fix the pin names in the pins property. None of the existing DTs in the
tree seems to use I2C0, which explains why this went unnoticed.
Fixes: 0d17c8651188 ("arm64: dts: allwinner: Add Allwinner H616 .dtsi file")
Signed-off-by: Andre Przywara <[email protected]>
Acked-by: Jernej Skrabec <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jernej Skrabec <[email protected]>
-rw-r--r-- | arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi b/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi index b2e85e52d1a1..a061b69c07c2 100644 --- a/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi +++ b/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi @@ -194,7 +194,7 @@ }; i2c0_pins: i2c0-pins { - pins = "PI6", "PI7"; + pins = "PI5", "PI6"; function = "i2c0"; }; |