arm64: dts: broadcom: trim addresses to 8 digits
Commit Message
Hex numbers in addresses and sizes should be rather eight digits, not
nine. Drop leading zeros. No functional change (same DTB).
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/broadcom/northstar2/ns2-svk.dts | 2 +-
arch/arm64/boot/dts/broadcom/northstar2/ns2-xmc.dts | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Comments
On Tue, 15 Nov 2022 11:50:47 +0100, Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> wrote:
> Hex numbers in addresses and sizes should be rather eight digits, not
> nine. Drop leading zeros. No functional change (same DTB).
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
Applied to https://github.com/Broadcom/stblinux/commits/devicetree-arm64/next, thanks!
--
Florian
@@ -52,7 +52,7 @@ chosen {
memory {
device_type = "memory";
- reg = <0x000000000 0x80000000 0x00000000 0x40000000>;
+ reg = <0x00000000 0x80000000 0x00000000 0x40000000>;
};
};
@@ -49,7 +49,7 @@ chosen {
memory {
device_type = "memory";
- reg = <0x000000000 0x80000000 0x00000001 0x00000000>;
+ reg = <0x00000000 0x80000000 0x00000001 0x00000000>;
};
};