Add the flags from the out of tree patches that adds a field and flags to struct media_device_info. This patch is not intended for consumption but to ease adding logic to media-ctl while the patches makes their way into the media-tree. Not-yet-Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@xxxxxxxxxxxx> --- include/linux/media.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/linux/media.h b/include/linux/media.h index f4ba8ae3e410103c..0982814dfc06daab 100644 --- a/include/linux/media.h +++ b/include/linux/media.h @@ -32,9 +32,13 @@ struct media_device_info { __u32 media_version; __u32 hw_revision; __u32 driver_version; - __u32 reserved[31]; + __u32 flags; + __u32 reserved[30]; }; +#define MEDIA_INFO_FLAG_INCOMPLETE (1 << 0) +#define MEDIA_INFO_FLAG_COMPLETE (1 << 1) + /* * Base number ranges for entity functions * -- 2.25.0