]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
rockchip: board: puma-rk3399: fix warnings in puma_rk3399/fit_spl_atf.its
authorPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>
Fri, 5 May 2017 10:33:24 +0000 (12:33 +0200)
committerPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>
Sun, 13 Aug 2017 15:12:35 +0000 (17:12 +0200)
The ITS file generated warnings due to @<num> designations in the naming
which cause DTC to complain as follows:
  Warning (unit_address_vs_reg): Node /images/uboot@1 has a unit name, but no reg property
  Warning (unit_address_vs_reg): Node /images/atf@1 has a unit name, but no reg property
  Warning (unit_address_vs_reg): Node /images/pmu@1 has a unit name, but no reg property
  Warning (unit_address_vs_reg): Node /images/fdt@1 has a unit name, but no reg property
  Warning (unit_address_vs_reg): Node /configurations/conf@1 has a unit name, but no reg property

This removes the @<num> part from the names, as we only have a single
image for each payload aspect (and only a single configuration) anyway.

Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
board/theobroma-systems/puma_rk3399/fit_spl_atf.its

index f93c2519272d4987784c256c1e6615cd4e7eff89..0519fad5fcdd9584d7e1ade75b298aa23bef0043 100644 (file)
@@ -13,7 +13,7 @@
        #address-cells = <1>;
 
        images {
-               uboot@1 {
+               uboot {
                        description = "U-Boot (64-bit)";
                        data = /incbin/("../../../u-boot-nodtb.bin");
                        type = "standalone";
@@ -21,7 +21,7 @@
                        compression = "none";
                        load = <0x00200000>;
                };
-               atf@1 {
+               atf {
                        description = "ARM Trusted Firmware";
                        data = /incbin/("../../../bl31.bin");
                        type = "firmware";
                        load = <0x00001000>;
                        entry = <0x00001000>;
                };
-               pmu@1 {
+               pmu {
                        description = "Cortex-M0 firmware";
                        data = /incbin/("../../../rk3399m0.bin");
                        type = "pmu-firmware";
                        compression = "none";
                        load = <0xff8c0000>;
                 };
-               fdt@1 {
+               fdt {
                        description = "RK3399-Q7 (Puma) flat device-tree";
                        data = /incbin/("../../../u-boot.dtb");
                        type = "flat_dt";
        };
 
        configurations {
-               default = "conf@1";
-               conf@1 {
+               default = "conf";
+               conf {
                        description = "Theobroma Systems RK3399-Q7 (Puma) SoM";
-                       firmware = "uboot@1";
-                       loadables = "atf@1";
-                       fdt = "fdt@1";
+                       firmware = "uboot";
+                       loadables = "atf";
+                       fdt = "fdt";
                };
        };
 };