commit | 2137c240ec6a8d3d47b464477f90fb850e00685d | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Sun Dec 29 21:19:19 2019 -0700 |
committer | Simon Glass <sjg@chromium.org> | Tue Jan 07 16:02:38 2020 -0700 |
tree | 68ccf178bc34ed6ee9d6f38b79ab2d87bf60fa4a | |
parent | a8d8f163aa4f4272e341b784660bd79e51c8f416 [diff] [blame] |
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>
diff --git a/include/dm/device.h b/include/dm/device.h index d7ad9d6..2177470 100644 --- a/include/dm/device.h +++ b/include/dm/device.h
@@ -45,6 +45,7 @@ /* 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) /*