Home
last modified time | relevance | path

Searched refs:inoutbuf (Results 1 – 1 of 1) sorted by relevance

/linux-5.19.10/drivers/iio/dac/
Dmcp4725.c79 u8 inoutbuf[3]; in mcp4725_store_eeprom() local
90 inoutbuf[0] = 0x60; /* write EEPROM */ in mcp4725_store_eeprom()
91 inoutbuf[0] |= data->ref_mode << 3; in mcp4725_store_eeprom()
92 inoutbuf[0] |= data->powerdown ? ((data->powerdown_mode + 1) << 1) : 0; in mcp4725_store_eeprom()
93 inoutbuf[1] = data->dac_value >> 4; in mcp4725_store_eeprom()
94 inoutbuf[2] = (data->dac_value & 0xf) << 4; in mcp4725_store_eeprom()
96 ret = i2c_master_send(data->client, inoutbuf, 3); in mcp4725_store_eeprom()
105 ret = i2c_master_recv(data->client, inoutbuf, 3); in mcp4725_store_eeprom()
111 if (inoutbuf[0] & 0x80) in mcp4725_store_eeprom()