summaryrefslogtreecommitdiff
path: root/drivers/media/dvb
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2011-09-29 05:10:06 (GMT)
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-09-30 16:32:56 (GMT)
commit2f4cf2c3a971c4d5154def8ef9ce4811d702852d (patch)
tree79cb1bdc2fdf018b31e1fc733e3b11fc0864f354 /drivers/media/dvb
parent4c4364e022f8422e602edbb97a2d873dc0b6c769 (diff)
downloadlinux-2f4cf2c3a971c4d5154def8ef9ce4811d702852d.tar.xz
[media] dib9000: release a lock on error
This lock should be released as well on the error path. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Cc: Patrick Boettcher <Patrick.Boettcher@dibcom.fr> Cc: Olivier Grenie <olivier.grenie@dibcom.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r--drivers/media/dvb/frontends/dib9000.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/dvb/frontends/dib9000.c b/drivers/media/dvb/frontends/dib9000.c
index e276b11..660f806 100644
--- a/drivers/media/dvb/frontends/dib9000.c
+++ b/drivers/media/dvb/frontends/dib9000.c
@@ -2169,6 +2169,7 @@ static int dib9000_read_ber(struct dvb_frontend *fe, u32 * ber)
DibAcquireLock(&state->demod_lock);
DibAcquireLock(&state->platform.risc.mem_mbx_lock);
if (dib9000_fw_memmbx_sync(state, FE_SYNC_CHANNEL) < 0) {
+ DibReleaseLock(&state->platform.risc.mem_mbx_lock);
ret = -EIO;
goto error;
}