diff options
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 |