If the media device implements the graph_complete callback utilise it and fill in the completes of the graph in the struct media_device_info. Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@xxxxxxxxxxxx> --- drivers/media/mc/mc-device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/media/mc/mc-device.c b/drivers/media/mc/mc-device.c index da8088351135298a..64c786570b6df129 100644 --- a/drivers/media/mc/mc-device.c +++ b/drivers/media/mc/mc-device.c @@ -75,6 +75,10 @@ static long media_device_get_info(struct media_device *dev, void *arg) info->driver_version = info->media_version; info->hw_revision = dev->hw_revision; + if (dev->ops && dev->ops->graph_complete) + info->flags |= dev->ops->graph_complete(dev) ? + MEDIA_INFO_FLAG_COMPLETE : MEDIA_INFO_FLAG_INCOMPLETE; + return 0; } -- 2.25.1