From 8825f0fcd90b3ee67fedf9174339510183730d1d Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Fri, 1 Dec 2023 17:20:50 -0800 Subject: [PATCH] ipq806x: fix leading 0 warnings dtc warns about leading 0s. Signed-off-by: Rosen Penev --- .../arch/arm/boot/dts/qcom-ipq8068-ap3935.dts | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8068-ap3935.dts b/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8068-ap3935.dts index 5c75de8f8d..bf65630f18 100644 --- a/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8068-ap3935.dts +++ b/target/linux/ipq806x/files/arch/arm/boot/dts/qcom-ipq8068-ap3935.dts @@ -181,41 +181,41 @@ flash@0 { compatible = "jedec,spi-nor"; - #address-cells = <1>; - #size-cells = <1>; spi-max-frequency = <50000000>; reg = <0>; partitions { compatible = "fixed-partitions"; + #address-cells = <1>; + #size-cells = <1>; - cfg1@02a0000 { + cfg1@2a0000 { compatible = "u-boot,env-redundant-bool"; label = "CFG1"; - reg = <0x02a0000 0x0010000>; + reg = <0x2a0000 0x0010000>; ethaddr: ethaddr { }; }; - bootpri@02b0000 { + bootpri@2b0000 { label = "BootPRI"; - reg = <0x02b0000 0x0080000>; + reg = <0x2b0000 0x0080000>; }; - cfg2@0330000 { + cfg2@330000 { label = "CFG2"; - reg = <0x0330000 0x0010000>; + reg = <0x330000 0x0010000>; }; - fs@0340000 { + fs@340000 { label = "FS"; - reg = <0x0340000 0x0080000>; + reg = <0x340000 0x0080000>; }; - priimg@03c0000 { + priimg@3c0000 { label = "PriImg"; - reg = <0x03c0000 0x0e10000>; + reg = <0x3c0000 0x0e10000>; }; secimg@11d0000 { -- 2.30.2