summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/omap3isp/ispstat.c
diff options
context:
space:
mode:
authorLaurent Pinchart2011-09-22 22:09:26 +0200
committerMauro Carvalho Chehab2011-11-03 21:31:31 +0100
commited33ac8e0876a3016511ea0aaf9af1d965ee2c44 (patch)
treeb4b0c581a0ec831d3857d86205234b8924bd6ba5 /drivers/media/video/omap3isp/ispstat.c
parent[media] omap3isp: Move *_init_entities() functions to the init/cleanup section (diff)
downloadkernel-qcow2-linux-ed33ac8e0876a3016511ea0aaf9af1d965ee2c44.tar.gz
kernel-qcow2-linux-ed33ac8e0876a3016511ea0aaf9af1d965ee2c44.tar.xz
kernel-qcow2-linux-ed33ac8e0876a3016511ea0aaf9af1d965ee2c44.zip
[media] omap3isp: Add missing mutex_destroy() calls
Mutexes must be destroyed with mutex_destroy(). Add missing calls in the modules cleanup handlers. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/omap3isp/ispstat.c')
-rw-r--r--drivers/media/video/omap3isp/ispstat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/omap3isp/ispstat.c b/drivers/media/video/omap3isp/ispstat.c
index b124326d1e7f..28b7cc61cba6 100644
--- a/drivers/media/video/omap3isp/ispstat.c
+++ b/drivers/media/video/omap3isp/ispstat.c
@@ -1087,6 +1087,7 @@ int omap3isp_stat_init(struct ispstat *stat, const char *name,
void omap3isp_stat_cleanup(struct ispstat *stat)
{
media_entity_cleanup(&stat->subdev.entity);
+ mutex_destroy(&stat->ioctl_lock);
isp_stat_bufs_free(stat);
kfree(stat->buf);
}