Skip to content

Commit

Permalink
ARM: dts: rockchip: Fix i2c0 register address for RK3128
Browse files Browse the repository at this point in the history
commit 2e9cbc4 upstream.

The register address for i2c0 is missing a 0x to mark it as hex.

Fixes: a0201bf ("ARM: dts: rockchip: add rk3128 soc dtsi")
Signed-off-by: Alex Bee <knaerzche@gmail.com>
Link: https://lore.kernel.org/r/20230829203721.281455-6-knaerzche@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
knaerzche authored and gregkh committed Nov 2, 2023
1 parent f4b8ef2 commit 568192d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/rockchip/rk3128.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@

i2c0: i2c@20072000 {
compatible = "rockchip,rk3128-i2c", "rockchip,rk3288-i2c";
reg = <20072000 0x1000>;
reg = <0x20072000 0x1000>;
interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
clock-names = "i2c";
clocks = <&cru PCLK_I2C0>;
Expand Down

0 comments on commit 568192d

Please sign in to comment.