dm: core: Avoid void * in the of-platdata structs
authorSimon Glass <sjg@chromium.org>
Sat, 3 Oct 2020 15:25:21 +0000 (09:25 -0600)
committerSimon Glass <sjg@chromium.org>
Thu, 29 Oct 2020 20:42:17 +0000 (14:42 -0600)
These pointers point to drivers. Update the definition to make this clear.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/dt-structs.h

index 924d51f..eed8273 100644 (file)
@@ -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;
+       const struct driver_info *node;
        int arg[0];
 };
 
 struct phandle_1_arg {
-       const void *node;
+       const struct driver_info *node;
        int arg[1];
 };
 
 struct phandle_2_arg {
-       const void *node;
+       const struct driver_info *node;
        int arg[2];
 };
 #include <generated/dt-structs-gen.h>