Commit 12760080bc8703c163c81aab9c18014421b6a795

Authored by Philipp Tomsich
1 parent 5aa49af311

rockchip: board: puma-rk3399: fix warnings in puma_rk3399/fit_spl_atf.its

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>

Showing 1 changed file with 9 additions and 9 deletions Side-by-side Diff

board/theobroma-systems/puma_rk3399/fit_spl_atf.its
... ... @@ -13,7 +13,7 @@
13 13 #address-cells = <1>;
14 14  
15 15 images {
16   - uboot@1 {
  16 + uboot {
17 17 description = "U-Boot (64-bit)";
18 18 data = /incbin/("../../../u-boot-nodtb.bin");
19 19 type = "standalone";
... ... @@ -21,7 +21,7 @@
21 21 compression = "none";
22 22 load = <0x00200000>;
23 23 };
24   - atf@1 {
  24 + atf {
25 25 description = "ARM Trusted Firmware";
26 26 data = /incbin/("../../../bl31.bin");
27 27 type = "firmware";
28 28  
... ... @@ -30,14 +30,14 @@
30 30 load = <0x00001000>;
31 31 entry = <0x00001000>;
32 32 };
33   - pmu@1 {
  33 + pmu {
34 34 description = "Cortex-M0 firmware";
35 35 data = /incbin/("../../../rk3399m0.bin");
36 36 type = "pmu-firmware";
37 37 compression = "none";
38 38 load = <0xff8c0000>;
39 39 };
40   - fdt@1 {
  40 + fdt {
41 41 description = "RK3399-Q7 (Puma) flat device-tree";
42 42 data = /incbin/("../../../u-boot.dtb");
43 43 type = "flat_dt";
44 44  
... ... @@ -46,12 +46,12 @@
46 46 };
47 47  
48 48 configurations {
49   - default = "conf@1";
50   - conf@1 {
  49 + default = "conf";
  50 + conf {
51 51 description = "Theobroma Systems RK3399-Q7 (Puma) SoM";
52   - firmware = "uboot@1";
53   - loadables = "atf@1";
54   - fdt = "fdt@1";
  52 + firmware = "uboot";
  53 + loadables = "atf";
  54 + fdt = "fdt";
55 55 };
56 56 };
57 57 };