Message ID | 20211013143810.2101838-2-arnd@kernel.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [1/2] ARM: versatile: remove leading 0 on unit address | expand |
On Wed, 13 Oct 2021 at 16:38, Arnd Bergmann <arnd@kernel.org> wrote: > > From: Arnd Bergmann <arnd@arndb.de> > > dtc started warning about some of the CPU addresses: > > arch/arm64/boot/dts/exynos/exynosautov9.dtsi:78.20-83.5: Warning (unit_address_format): /cpus/cpu@000000: unit name should not have leading 0s > arch/arm64/boot/dts/exynos/exynosautov9.dtsi:85.20-90.5: Warning (unit_address_format): /cpus/cpu@000100: unit name should not have leading 0s > arch/arm64/boot/dts/exynos/exynosautov9.dtsi:92.20-97.5: Warning (unit_address_format): /cpus/cpu@000200: unit name should not have leading 0s > arch/arm64/boot/dts/exynos/exynosautov9.dtsi:99.20-104.5: Warning (unit_address_format): /cpus/cpu@000300: unit name should not have leading 0s > > Remove the leading zeroes. > > Fixes: f695b3f4c45d ("arm64: dts: exynos: add initial support for exynosautov9 SoC") > Signed-off-by: Arnd Bergmann <arnd@arndb.de> > --- Thanks Arnd, but this was fixed with the next version of patchset. It's my bad because I did not drop the patch from my next branch after spotting it, knowing that Chanho will resubmit the next day and then I would replace it. This replacement happened next day but linux next got the older/buggy patch. Best regards, Krzysztof
On Wed, Oct 13, 2021 at 5:01 PM Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> wrote: > On Wed, 13 Oct 2021 at 16:38, Arnd Bergmann <arnd@kernel.org> wrote: > > Thanks Arnd, but this was fixed with the next version of patchset. > It's my bad because I did not drop the patch from my next branch after > spotting it, knowing that Chanho will resubmit the next day and then I > would replace it. This replacement happened next day but linux next > got the older/buggy patch. Ok, I see it now. Looks like I forgot to rebase onto the latest next/master before testing my patches today. Arnd
diff --git a/arch/arm64/boot/dts/exynos/exynosautov9.dtsi b/arch/arm64/boot/dts/exynos/exynosautov9.dtsi index 1dd1d73a52b8..284a7adb474a 100644 --- a/arch/arm64/boot/dts/exynos/exynosautov9.dtsi +++ b/arch/arm64/boot/dts/exynos/exynosautov9.dtsi @@ -75,28 +75,28 @@ core3 { }; }; - cpu0: cpu@000000 { + cpu0: cpu@0 { device_type = "cpu"; compatible = "arm,cortex-a76"; reg = <0x0>; enable-method = "psci"; }; - cpu1: cpu@000100 { + cpu1: cpu@100 { device_type = "cpu"; compatible = "arm,cortex-a76"; reg = <0x100>; enable-method = "psci"; }; - cpu2: cpu@000200 { + cpu2: cpu@200 { device_type = "cpu"; compatible = "arm,cortex-a76"; reg = <0x200>; enable-method = "psci"; }; - cpu3: cpu@000300 { + cpu3: cpu@300 { device_type = "cpu"; compatible = "arm,cortex-a76"; reg = <0x300>;