From 6668748f7b0c77e5c5549217c08c9429a5631ddb Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 12 Oct 2021 09:33:47 +0200 Subject: ARM: Rockchip: rk3568 EVB: use 64bit partition sizes The ofpart partition fixup will use #address-cells = <2> and #size-cells = <2>. Use the same in the dts file to make the diff between the live tree and its fixed version smaller. Signed-off-by: Sascha Hauer Link: https://lore.barebox.org/20211012073352.4071559-4-s.hauer@pengutronix.de Signed-off-by: Sascha Hauer --- arch/arm/dts/rk3568-evb1-v10.dts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'arch/arm') diff --git a/arch/arm/dts/rk3568-evb1-v10.dts b/arch/arm/dts/rk3568-evb1-v10.dts index bd583015e8..ebfd45ada8 100644 --- a/arch/arm/dts/rk3568-evb1-v10.dts +++ b/arch/arm/dts/rk3568-evb1-v10.dts @@ -472,17 +472,17 @@ partitions { compatible = "fixed-partitions"; - #address-cells = <1>; - #size-cells = <1>; + #address-cells = <2>; + #size-cells = <2>; partition@8000 { label = "barebox"; - reg = <0x8000 0x400000>; + reg = <0x0 0x8000 0x0 0x400000>; }; environment_emmc: partition@408000 { label = "barebox-environment"; - reg = <0x408000 0x8000>; + reg = <0x0 0x408000 0x0 0x8000>; }; }; }; @@ -503,17 +503,17 @@ partitions { compatible = "fixed-partitions"; - #address-cells = <1>; - #size-cells = <1>; + #address-cells = <2>; + #size-cells = <2>; partition@8000 { label = "barebox"; - reg = <0x8000 0x400000>; + reg = <0x0 0x8000 0x0 0x400000>; }; environment_sd: partition@408000 { label = "barebox-environment"; - reg = <0x408000 0x8000>; + reg = <0x0 0x408000 0x0 0x8000>; }; }; }; -- cgit v1.2.3