[U-Boot] [PATCH 1/2] sandbox: Correct dtc warning in /chosen node

Simon Glass sjg at chromium.org
Sat Feb 3 17:36:58 UTC 2018


At present dtc produces these warnings when compiling sandbox:

arch/sandbox/dts/test.dtb: Warning (reg_format): "reg" property in /chosen/chosen-test has invalid length (8 bytes) (#address-cells == 2, #size-cells == 1)
arch/sandbox/dts/test.dtb: Warning (avoid_default_addr_size): Relying on default #address-cells value for /chosen/chosen-test
arch/sandbox/dts/test.dtb: Warning (avoid_default_addr_size): Relying on default #size-cells value for /chosen/chosen-test

Add the missing properties to avoid this.

Signed-off-by: Simon Glass <sjg at chromium.org>
Fixes: f200680 (dm: core: parse chosen node)
---

 arch/sandbox/dts/test.dts | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts
index 3f9e788e6c3..c38e3691628 100644
--- a/arch/sandbox/dts/test.dts
+++ b/arch/sandbox/dts/test.dts
@@ -480,6 +480,8 @@
 	};
 
 	chosen {
+		#address-cells = <1>;
+		#size-cells = <1>;
 		chosen-test {
 			compatible = "denx,u-boot-fdt-test";
 			reg = <9 1>;
-- 
2.16.0.rc1.238.g530d649a79-goog



More information about the U-Boot mailing list