diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2011-11-03 12:12:00 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-12-11 12:44:03 +0100 |
commit | 6b806e30a3149816454a7ab71d50c244ebdb27d1 (patch) | |
tree | fc0fa78c18e209646e9d4ac9d5c0f306687b2085 /drivers/media/video | |
parent | [media] V4L: omap1_camera: fix missing <linux/module.h> include (diff) | |
download | linux-6b806e30a3149816454a7ab71d50c244ebdb27d1.tar.xz linux-6b806e30a3149816454a7ab71d50c244ebdb27d1.zip |
[media] V4L: mt9m111: fix uninitialised mutex
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/mt9m111.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/mt9m111.c b/drivers/media/video/mt9m111.c index f023cc092c2b..dda4685166d5 100644 --- a/drivers/media/video/mt9m111.c +++ b/drivers/media/video/mt9m111.c @@ -954,6 +954,7 @@ static int mt9m111_probe(struct i2c_client *client, mt9m111->rect.height = MT9M111_MAX_HEIGHT; mt9m111->fmt = &mt9m111_colour_fmts[0]; mt9m111->lastpage = -1; + mutex_init(&mt9m111->power_lock); ret = mt9m111_video_probe(client); if (ret) { |