mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
[media] dvb: return the error from i2c_transfer if negative
Just returns whatever error that was returned by the i2c core, in the case of errors, only returning -EREMOTEIO if the transfer size is not what it was expected. Signed-off-by: Hans Wennborg <hans@hanshq.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
a375218460
commit
612f676bbe
1 changed files with 2 additions and 0 deletions
|
@ -118,6 +118,8 @@ static int mb86a16_read(struct mb86a16_state *state, u8 reg, u8 *val)
|
|||
dprintk(verbose, MB86A16_ERROR, 1, "read error(reg=0x%02x, ret=%i)",
|
||||
reg, ret);
|
||||
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
return -EREMOTEIO;
|
||||
}
|
||||
*val = b1[0];
|
||||
|
|
Loading…
Reference in a new issue