summaryrefslogtreecommitdiff
path: root/include/dt-structs.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-09-15 22:34:34 -0400
committerTom Rini <trini@konsulko.com>2017-09-15 22:34:34 -0400
commit08cebeeaadd9192dd501308ac6a8b858ffa255c1 (patch)
tree65e037590914a47d0f3352afeb596c5cd6f238e8 /include/dt-structs.h
parent110ba62519909df7042cbe71824dfe3844557a85 (diff)
parentea28e488f743520f7f83b341f28818c32dae1ee3 (diff)
Merge git://git.denx.de/u-boot-fdt
Diffstat (limited to 'include/dt-structs.h')
-rw-r--r--include/dt-structs.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/include/dt-structs.h b/include/dt-structs.h
index 0732c442ff8..c0f56951b53 100644
--- a/include/dt-structs.h
+++ b/include/dt-structs.h
@@ -9,11 +9,21 @@
/* These structures may only be used in SPL */
#if CONFIG_IS_ENABLED(OF_PLATDATA)
-struct phandle_2_cell {
+struct phandle_0_arg {
const void *node;
- int id;
+ int arg[0];
};
-#include <generated/dt-structs.h>
+
+struct phandle_1_arg {
+ const void *node;
+ int arg[1];
+};
+
+struct phandle_2_arg {
+ const void *node;
+ int arg[2];
+};
+#include <generated/dt-structs-gen.h>
#endif
#endif