]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dm: core: Add a comment for DM_FLAG_OF_PLATDATA
authorSimon Glass <sjg@chromium.org>
Mon, 30 Dec 2019 04:19:19 +0000 (21:19 -0700)
committerSimon Glass <sjg@chromium.org>
Tue, 7 Jan 2020 23:02:38 +0000 (16:02 -0700)
This flag is missing a comment. Add one.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/dm/device.h

index d7ad9d6728b0d26fff0ee1c85c9a26b86ee6e05a..21774708e716ea6344a5672a1153bf645ee99e83 100644 (file)
@@ -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)
 
 /*