The release callback may be used by the driver to signal the release of the media device. This way the lifetime of the driver's own memory allocations may be made dependent on that of the media device. Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> --- drivers/media/media-device.c | 4 ++++ include/media/media-device.h | 1 + 2 files changed, 5 insertions(+) diff --git a/drivers/media/media-device.c b/drivers/media/media-device.c index 7d9f76d..e9dfc87 100644 --- a/drivers/media/media-device.c +++ b/drivers/media/media-device.c @@ -724,6 +724,10 @@ static void media_device_release(struct media_devnode *devnode) mdev->entity_internal_idx_max = 0; media_entity_graph_walk_cleanup(&mdev->pm_count_walk); mutex_destroy(&mdev->graph_mutex); + + if (mdev->ops && mdev->ops->release) + mdev->ops->release(mdev); + put_device(mdev->dev); kfree(mdev); diff --git a/include/media/media-device.h b/include/media/media-device.h index 94e96ef..81f09ed 100644 --- a/include/media/media-device.h +++ b/include/media/media-device.h @@ -56,6 +56,7 @@ struct media_entity_notify { struct media_device_ops { int (*link_notify)(struct media_link *link, u32 flags, unsigned int notification); + void (*release)(struct media_device *mdev); }; /** -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html