aboutsummaryrefslogtreecommitdiff
path: root/include/dt-structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dt-structs.h')
-rw-r--r--include/dt-structs.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/dt-structs.h b/include/dt-structs.h
index 924d51f..f0e1c9c 100644
--- a/include/dt-structs.h
+++ b/include/dt-structs.h
@@ -8,18 +8,20 @@
/* These structures may only be used in SPL */
#if CONFIG_IS_ENABLED(OF_PLATDATA)
+struct driver_info;
+
struct phandle_0_arg {
- const void *node;
+ uint idx;
int arg[0];
};
struct phandle_1_arg {
- const void *node;
+ uint idx;
int arg[1];
};
struct phandle_2_arg {
- const void *node;
+ uint idx;
int arg[2];
};
#include <generated/dt-structs-gen.h>