X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fdm%2Fplatdata.h;h=2bc8b147edfed01f152c1ca5e310ba8248637534;hb=740f41d3cbefe2068247852220226c2c3b287249;hp=0ef3353e74651e1e9b60066f43ee90ab9a48a021;hpb=5495dae7aa9d5cd161e07174d38acac86515c58a;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/dm/platdata.h b/include/dm/platdata.h index 0ef3353..2bc8b14 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) \