summaryrefslogtreecommitdiffstats
path: root/drivers/media/common
diff options
context:
space:
mode:
authorDan Carpenter2012-07-21 09:32:59 +0200
committerMauro Carvalho Chehab2012-07-31 01:37:19 +0200
commitf088ccd6404ca5966104afcae319384f41a0b8cb (patch)
treeecd2f426d8a60f42953913027669f4c20a099561 /drivers/media/common
parent[media] Documentation: Add newline at end-of-file to files lacking one (diff)
downloadkernel-qcow2-linux-f088ccd6404ca5966104afcae319384f41a0b8cb.tar.gz
kernel-qcow2-linux-f088ccd6404ca5966104afcae319384f41a0b8cb.tar.xz
kernel-qcow2-linux-f088ccd6404ca5966104afcae319384f41a0b8cb.zip
[media] tuner-xc2028: unlock on error in xc2028_get_afc()
We need to do a mutex_unlock(&priv->lock) before returning. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common')
-rw-r--r--drivers/media/common/tuners/tuner-xc2028.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/tuners/tuner-xc2028.c b/drivers/media/common/tuners/tuner-xc2028.c
index 9e602856b2fa..ea0550eafe7d 100644
--- a/drivers/media/common/tuners/tuner-xc2028.c
+++ b/drivers/media/common/tuners/tuner-xc2028.c
@@ -978,7 +978,7 @@ static int xc2028_get_afc(struct dvb_frontend *fe, s32 *afc)
/* Get AFC */
rc = xc2028_get_reg(priv, XREG_FREQ_ERROR, &afc_reg);
if (rc < 0)
- return rc;
+ goto ret;
*afc = afc_reg * 15625; /* Hz */