Device trees used with barebox are likely to still use the deprecated nvmem cell binding. To have some coverage of the new binding, switch sandbox over to it. No functional change. Note that the nvmem-cells compatible node seems to be no longer necessary per binding, but that aspect is not yet supported by barebox. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- arch/sandbox/dts/sandbox.dts | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/arch/sandbox/dts/sandbox.dts b/arch/sandbox/dts/sandbox.dts index bb37cfeaf9a2..34071813ffa6 100644 --- a/arch/sandbox/dts/sandbox.dts +++ b/arch/sandbox/dts/sandbox.dts @@ -80,15 +80,19 @@ part_nvmem: nvmem@300 { compatible = "nvmem-cells"; reg = <0x300 0x100>; label = "nvmem"; - #address-cells = <1>; - #size-cells = <1>; - reset_source: reset-source@0 { - reg = <0x0 0x1>; - }; + nvmem-layout { + compatible = "fixed-layout"; + #address-cells = <1>; + #size-cells = <1>; - reboot_mode: reboot-mode@1 { - reg = <0x1 0x4>; + reset_source: reset-source@0 { + reg = <0x0 0x1>; + }; + + reboot_mode: reboot-mode@1 { + reg = <0x1 0x4>; + }; }; }; -- 2.39.2