diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/i2c/i2c-core.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index a58f89a6418a..64f8e56d300e 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
@@ -1298,6 +1298,22 @@ s32 i2c_smbus_write_word_data(struct i2c_client *client, u8 command, u16 value) | |||
1298 | } | 1298 | } |
1299 | EXPORT_SYMBOL(i2c_smbus_write_word_data); | 1299 | EXPORT_SYMBOL(i2c_smbus_write_word_data); |
1300 | 1300 | ||
1301 | /* Returns the number of read bytes */ | ||
1302 | s32 i2c_smbus_read_block_data(struct i2c_client *client, u8 command, | ||
1303 | u8 *values) | ||
1304 | { | ||
1305 | union i2c_smbus_data data; | ||
1306 | |||
1307 | if (i2c_smbus_xfer(client->adapter, client->addr, client->flags, | ||
1308 | I2C_SMBUS_READ, command, | ||
1309 | I2C_SMBUS_BLOCK_DATA, &data)) | ||
1310 | return -1; | ||
1311 | |||
1312 | memcpy(values, &data.block[1], data.block[0]); | ||
1313 | return data.block[0]; | ||
1314 | } | ||
1315 | EXPORT_SYMBOL(i2c_smbus_read_block_data); | ||
1316 | |||
1301 | s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command, | 1317 | s32 i2c_smbus_write_block_data(struct i2c_client *client, u8 command, |
1302 | u8 length, const u8 *values) | 1318 | u8 length, const u8 *values) |
1303 | { | 1319 | { |