diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-29 21:19:19 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-01-07 16:02:38 -0700 |
commit | 04e19ffded40d97502961485a3ce7db6f3d590be (patch) | |
tree | 68ccf178bc34ed6ee9d6f38b79ab2d87bf60fa4a /include/dm | |
parent | 82de42fa14682d408da935adfb0f935354c5008f (diff) | |
download | u-boot-04e19ffded40d97502961485a3ce7db6f3d590be.tar.gz u-boot-04e19ffded40d97502961485a3ce7db6f3d590be.tar.bz2 u-boot-04e19ffded40d97502961485a3ce7db6f3d590be.zip |
dm: core: Add a comment for DM_FLAG_OF_PLATDATA
This flag is missing a comment. Add one.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/device.h | 1 |
1 files changed, 1 insertions, 0 deletions
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) /* |