Private
Public Access
2
0

i2c: make maa_i2c_read always return the length of the read

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-06-11 10:47:13 +01:00
parent be1248930b
commit ab071e64de
3 changed files with 6 additions and 6 deletions

View File

@@ -78,14 +78,14 @@ maa_i2c_frequency(maa_i2c_context dev, int hz)
return MAA_SUCCESS;
}
maa_result_t
int
maa_i2c_read(maa_i2c_context dev, uint8_t* data, int length)
{
// this is the read(3) syscall not maa_i2c_read()
if (read(dev->fh, data, length) == length) {
return length;
}
return MAA_ERROR_NO_DATA_AVAILABLE;
return 0;
}
uint8_t