X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fdm%2Fplatdata.h;h=2bc8b147edfed01f152c1ca5e310ba8248637534;hb=b9fb3b94cbb76884df4e8425abc2a95bb7aa6a56;hp=0ef3353e74651e1e9b60066f43ee90ab9a48a021;hpb=32907339c2f533f1d59362c6100c6a0eeeca4837;p=u-boot diff --git a/include/dm/platdata.h b/include/dm/platdata.h index 0ef3353e74..2bc8b147ed 100644 --- a/include/dm/platdata.h +++ b/include/dm/platdata.h @@ -11,9 +11,15 @@ #ifndef _DM_PLATDATA_H #define _DM_PLATDATA_H +/** + * struct driver_info - Information required to instantiate a device + * + * @name: Device name + * @platdata: Driver-specific platform data + */ struct driver_info { - const char *name; - const void *platdata; + const char *name; + const void *platdata; }; #define U_BOOT_DEVICE(__name) \