]> git.sur5r.net Git - u-boot/commitdiff
microblaze: Add missing chosen node
authorMichal Simek <michal.simek@xilinx.com>
Wed, 24 Feb 2016 11:37:50 +0000 (12:37 +0100)
committerTom Rini <trini@konsulko.com>
Wed, 24 Feb 2016 23:44:15 +0000 (18:44 -0500)
fdtgrep requires /chosen node to be specified or at least more nodes which
stays in DTS to generate output.
Error message:
./tools/fdtgrep -b u-boot,dm-pre-reloc -RT dts/dt.dtb -n /chosen -O
dtb | ./tools/fdtgrep -r -O dtb - -o spl/u-boot-spl.dtb -P pinctrl-0 -P
pinctrl-names -P clocks -P clock-names -P interrupt-parent
Error: FDT_ERR_BADMAGIC

This patch add empty chosen node to keep fdtgrep happy and pass
compilation for in tree DTS file.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/microblaze/dts/microblaze-generic.dts

index 203330987bda4c827df6998bbce3f7c1ea67b56b..08a1396f2db258d84b3ed1588137eb85b06cc185 100644 (file)
@@ -4,4 +4,6 @@
        #size-cells = <1>;
        aliases {
        } ;
+       chosen {
+       } ;
 } ;