diff options
author | Antti Palosaari <crope@iki.fi> | 2008-08-11 09:36:43 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-13 05:15:30 -0400 |
commit | e613f8fa5432d4cacaf81615f62b6d25d77947c5 (patch) | |
tree | 623b9aa85776fc904034e2dfed2553f25a53dd2b | |
parent | 45d011031d745d2c9a21c21d289428cb7f88a2d0 (diff) |
V4L/DVB (9140): anysee: unlock I2C-mutex in error case
- unlock I2C-mutex also in error case
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/dvb-usb/anysee.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/dvb-usb/anysee.c b/drivers/media/dvb/dvb-usb/anysee.c index 2f408d2e1ef3..f511d105081f 100644 --- a/drivers/media/dvb/dvb-usb/anysee.c +++ b/drivers/media/dvb/dvb-usb/anysee.c | |||
@@ -178,14 +178,14 @@ static int anysee_master_xfer(struct i2c_adapter *adap, struct i2c_msg *msg, | |||
178 | inc = 1; | 178 | inc = 1; |
179 | } | 179 | } |
180 | if (ret) | 180 | if (ret) |
181 | return ret; | 181 | break; |
182 | 182 | ||
183 | i += inc; | 183 | i += inc; |
184 | } | 184 | } |
185 | 185 | ||
186 | mutex_unlock(&d->i2c_mutex); | 186 | mutex_unlock(&d->i2c_mutex); |
187 | 187 | ||
188 | return i; | 188 | return ret ? ret : i; |
189 | } | 189 | } |
190 | 190 | ||
191 | static u32 anysee_i2c_func(struct i2c_adapter *adapter) | 191 | static u32 anysee_i2c_func(struct i2c_adapter *adapter) |