Skip to content

Commit 2e9cbc4

Browse files
knaerzchemmind
authored andcommitted
ARM: dts: rockchip: Fix i2c0 register address for RK3128
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Heiko Stuebner <[email protected]>
1 parent 1e585cd commit 2e9cbc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/boot/dts/rockchip/rk3128.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@
426426

427427
i2c0: i2c@20072000 {
428428
compatible = "rockchip,rk3128-i2c", "rockchip,rk3288-i2c";
429-
reg = <20072000 0x1000>;
429+
reg = <0x20072000 0x1000>;
430430
interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
431431
clock-names = "i2c";
432432
clocks = <&cru PCLK_I2C0>;

0 commit comments

Comments
 (0)