From 04e19ffded40d97502961485a3ce7db6f3d590be Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 29 Dec 2019 21:19:19 -0700 Subject: [PATCH] dm: core: Add a comment for DM_FLAG_OF_PLATDATA This flag is missing a comment. Add one. Signed-off-by: Simon Glass --- include/dm/device.h | 1 + 1 file changed, 1 insertion(+) 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) /* -- 2.25.1