From: Simon Glass Date: Mon, 30 Dec 2019 04:19:19 +0000 (-0700) Subject: dm: core: Add a comment for DM_FLAG_OF_PLATDATA X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=04e19ffded40d97502961485a3ce7db6f3d590be;p=u-boot.git dm: core: Add a comment for DM_FLAG_OF_PLATDATA This flag is missing a comment. Add one. Signed-off-by: Simon Glass --- diff --git a/include/dm/device.h b/include/dm/device.h index d7ad9d6728..21774708e7 100644 --- a/include/dm/device.h +++ b/include/dm/device.h @@ -45,6 +45,7 @@ struct driver_info; /* Device name is allocated and should be freed on unbind() */ #define DM_FLAG_NAME_ALLOCED (1 << 7) +/* Device has platform data provided by of-platdata */ #define DM_FLAG_OF_PLATDATA (1 << 8) /*