mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 11:06:39 +07:00
[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>
This commit is contained in:
parent
79980d9c98
commit
f088ccd640
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user