From: Simon Glass Date: Sat, 3 Oct 2020 15:25:21 +0000 (-0600) Subject: dm: core: Avoid void * in the of-platdata structs X-Git-Tag: baikal/mips/sdk5.9~138^2~65 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=ecac6250d491c7336d3bd6744a64c4b2887b3c36;p=uboot.git dm: core: Avoid void * in the of-platdata structs These pointers point to drivers. Update the definition to make this clear. Signed-off-by: Simon Glass --- diff --git a/include/dt-structs.h b/include/dt-structs.h index 924d51fc52..eed8273d18 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; + 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