Lines Matching defs:values
204 * @values: Byte array into which data will be read; big enough to hold
216 u8 *values)
227 memcpy(values, &data.block[1], data.block[0]);
237 * @values: Byte array which will be written.
243 u8 length, const u8 *values)
250 memcpy(&data.block[1], values, length);
259 u8 length, u8 *values)
273 memcpy(values, &data.block[1], data.block[0]);
279 u8 length, const u8 *values)
286 memcpy(data.block + 1, values, length);
623 * @values: Byte array into which data will be read; big enough to hold
638 u8 command, u8 length, u8 *values)
647 return i2c_smbus_read_i2c_block_data(client, command, length, values);
657 values[i] = status & 0xff;
658 values[i + 1] = status >> 8;
667 values[i] = status;