diff options
author | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-02-16 09:20:45 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2016-02-16 09:20:45 -0200 |
commit | 8c755c29108f00c354e3dfa24a2a546be566f604 (patch) | |
tree | 43416b4bc6f85d655ab63e84a1d8a751e2b4de09 /drivers/staging | |
parent | 360104e3b8485f4923ffc202c1c2b36841de673c (diff) | |
parent | 9727a9545adec59f4bccb83d1a709711f4acf242 (diff) | |
download | lwn-8c755c29108f00c354e3dfa24a2a546be566f604.tar.gz lwn-8c755c29108f00c354e3dfa24a2a546be566f604.zip |
Merge branch 'fixes' into patchwork
Some macros were changed/removed at the material for v4.5. We need
to sync with those changes here, in order to avoid troubles.
* v4l_for_linus:
[media] media.h: get rid of MEDIA_ENT_F_CONN_TEST
[media] [for,v4.5] media.h: increase the spacing between function ranges
[media] media: i2c/adp1653: probe: fix erroneous return value
[media] media: davinci_vpfe: fix missing unlock on error in vpfe_prepare_pipeline()
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/media/davinci_vpfe/vpfe_video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/davinci_vpfe/vpfe_video.c b/drivers/staging/media/davinci_vpfe/vpfe_video.c index 3ec7e65a3ffa..db49af90217e 100644 --- a/drivers/staging/media/davinci_vpfe/vpfe_video.c +++ b/drivers/staging/media/davinci_vpfe/vpfe_video.c @@ -147,7 +147,7 @@ static int vpfe_prepare_pipeline(struct vpfe_video_device *video) mutex_lock(&mdev->graph_mutex); ret = media_entity_graph_walk_init(&graph, entity->graph_obj.mdev); if (ret) { - mutex_unlock(&video->lock); + mutex_unlock(&mdev->graph_mutex); return -ENOMEM; } media_entity_graph_walk_start(&graph, entity); |