summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2021-10-12 09:33:47 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2021-10-12 10:22:08 +0200
commit6668748f7b0c77e5c5549217c08c9429a5631ddb (patch)
tree3922d949caee1bb87fe5f267cfbf57bdabe87387
parent1207a257d66e6141824d00baf5495309e570dd2e (diff)
downloadbarebox-6668748f7b0c77e5c5549217c08c9429a5631ddb.tar.gz
barebox-6668748f7b0c77e5c5549217c08c9429a5631ddb.tar.xz
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 <s.hauer@pengutronix.de> Link: https://lore.barebox.org/20211012073352.4071559-4-s.hauer@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/arm/dts/rk3568-evb1-v10.dts16
1 files changed, 8 insertions, 8 deletions
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>;
};
};
};