From: Sylwester Nawrocki Date: Thu, 18 Apr 2013 12:05:54 +0000 (-0300) Subject: [media] exynos4-is: Unregister fimc-is subdevs from the media device properly X-Git-Tag: firefly_0821_release~176^2~3573^2~1977 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e41a35cb4be81a56664c52c94ddbdb740dca4f63;p=firefly-linux-kernel-4.4.55.git [media] exynos4-is: Unregister fimc-is subdevs from the media device properly Add missing v4l2_device_unregister_subdev() call for the FIMC-IS subdevs (currently there is only the FIMC-IS-ISP subdev) so corresponding resources are properly freed upon the media device driver module removal. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyugmin Park Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/exynos4-is/media-dev.c b/drivers/media/platform/exynos4-is/media-dev.c index 1dbd55422706..a371ee5e857a 100644 --- a/drivers/media/platform/exynos4-is/media-dev.c +++ b/drivers/media/platform/exynos4-is/media-dev.c @@ -823,6 +823,10 @@ static void fimc_md_unregister_entities(struct fimc_md *fmd) fimc_md_unregister_sensor(fmd->sensor[i].subdev); fmd->sensor[i].subdev = NULL; } + + if (fmd->fimc_is) + v4l2_device_unregister_subdev(&fmd->fimc_is->isp.subdev); + v4l2_info(&fmd->v4l2_dev, "Unregistered all entities\n"); }