Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 179459
b: refs/heads/master
c: 99d96e4
h: refs/heads/master
i:
  179457: 2251216
  179455: 26c7211
v: v3
  • Loading branch information
Manu Abraham authored and Mauro Carvalho Chehab committed Jan 17, 2010
1 parent 5dcde21 commit e64cfd6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 51d20db8bb9c5a14ac2320664289f13bd52625c6
refs/heads/master: 99d96e4e9202aa046e3e2be1813ff59c84e67608
6 changes: 5 additions & 1 deletion trunk/drivers/media/dvb/mantis/mantis_i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,15 @@ static int mantis_i2c_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, in
ret = mantis_i2c_write(mantis, &msgs[i]);

if (ret < 0)
return ret;
goto bail_out;
}
mutex_unlock(&mantis->i2c_lock);

return num;

bail_out:
mutex_unlock(&mantis->i2c_lock);
return ret;
}

static u32 mantis_i2c_func(struct i2c_adapter *adapter)
Expand Down

0 comments on commit e64cfd6

Please sign in to comment.