diff options
author | Tom Rini <trini@konsulko.com> | 2017-09-15 22:34:34 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-09-15 22:34:34 -0400 |
commit | 08cebeeaadd9192dd501308ac6a8b858ffa255c1 (patch) | |
tree | 65e037590914a47d0f3352afeb596c5cd6f238e8 /include/dt-structs.h | |
parent | 110ba62519909df7042cbe71824dfe3844557a85 (diff) | |
parent | ea28e488f743520f7f83b341f28818c32dae1ee3 (diff) |
Merge git://git.denx.de/u-boot-fdt
Diffstat (limited to 'include/dt-structs.h')
-rw-r--r-- | include/dt-structs.h | 16 |
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 |