From: Simon Glass Date: Sat, 3 Feb 2018 17:36:58 +0000 (-0700) Subject: sandbox: Correct dtc warning in /chosen node X-Git-Tag: v2018.03-rc3~4^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7e87816caa2b54e7cca9aca9b29981e54fcd0496;hp=6d29cc7dcf2d35966aa0b6119fd1cbca0d21d5e6;p=u-boot sandbox: Correct dtc warning in /chosen node 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 Fixes: f200680 (dm: core: parse chosen node) --- diff --git a/arch/sandbox/dts/test.dts b/arch/sandbox/dts/test.dts index 3f9e788e6c..c38e369162 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>;