This is a note to let you know that I've just added the patch titled ARM: dts: rockchip: Fix i2c0 register address for RK3128 to the 6.5-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: arm-dts-rockchip-fix-i2c0-register-address-for-rk3128.patch and it can be found in the queue-6.5 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 2e9cbc4167da3134412ce47e4cdadbfdea30bbff Mon Sep 17 00:00:00 2001 From: Alex Bee <knaerzche@xxxxxxxxx> Date: Tue, 29 Aug 2023 22:37:21 +0200 Subject: ARM: dts: rockchip: Fix i2c0 register address for RK3128 From: Alex Bee <knaerzche@xxxxxxxxx> commit 2e9cbc4167da3134412ce47e4cdadbfdea30bbff upstream. The register address for i2c0 is missing a 0x to mark it as hex. Fixes: a0201bff6259 ("ARM: dts: rockchip: add rk3128 soc dtsi") Signed-off-by: Alex Bee <knaerzche@xxxxxxxxx> Link: https://lore.kernel.org/r/20230829203721.281455-6-knaerzche@xxxxxxxxx Signed-off-by: Heiko Stuebner <heiko@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/arm/boot/dts/rockchip/rk3128.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/rockchip/rk3128.dtsi b/arch/arm/boot/dts/rockchip/rk3128.dtsi index b63bd4ad3143..2e345097b9bd 100644 --- a/arch/arm/boot/dts/rockchip/rk3128.dtsi +++ b/arch/arm/boot/dts/rockchip/rk3128.dtsi @@ -426,7 +426,7 @@ saradc: saradc@2006c000 { 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>; -- 2.42.0 Patches currently in stable-queue which might be from knaerzche@xxxxxxxxx are queue-6.5/arm-dts-rockchip-fix-timer-clocks-for-rk3128.patch queue-6.5/arm-dts-rockchip-add-missing-arm-timer-interrupt-for-rk3128.patch queue-6.5/arm-dts-rockchip-add-missing-quirk-for-rk3128-s-dma-engine.patch queue-6.5/arm-dts-rockchip-fix-i2c0-register-address-for-rk3128.patch