mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-27 01:11:31 +00:00
i2c: pmcmsp: fix error return from master_xfer
Returning -1 (-EPERM) is not appropriate here, go with -EIO.
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Fixes: 1b144df1d7 ("i2c: New PMC MSP71xx TWI bus driver")
This commit is contained in:
parent
de9a8634f1
commit
12d9bbc5a7
1 changed files with 1 additions and 1 deletions
|
|
@ -564,7 +564,7 @@ static int pmcmsptwi_master_xfer(struct i2c_adapter *adap,
|
||||||
* TODO: We could potentially loop and retry in the case
|
* TODO: We could potentially loop and retry in the case
|
||||||
* of MSP_TWI_XFER_TIMEOUT.
|
* of MSP_TWI_XFER_TIMEOUT.
|
||||||
*/
|
*/
|
||||||
return -1;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
return num;
|
return num;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue