Home
last modified time | relevance | path

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

/linux-4.19.296/drivers/iio/dac/
Dmcp4725.c100 u8 inoutbuf[3]; in mcp4725_store_eeprom() local
111 inoutbuf[0] = 0x60; /* write EEPROM */ in mcp4725_store_eeprom()
112 inoutbuf[0] |= data->ref_mode << 3; in mcp4725_store_eeprom()
113 inoutbuf[0] |= data->powerdown ? ((data->powerdown_mode + 1) << 1) : 0; in mcp4725_store_eeprom()
114 inoutbuf[1] = data->dac_value >> 4; in mcp4725_store_eeprom()
115 inoutbuf[2] = (data->dac_value & 0xf) << 4; in mcp4725_store_eeprom()
117 ret = i2c_master_send(data->client, inoutbuf, 3); in mcp4725_store_eeprom()
126 ret = i2c_master_recv(data->client, inoutbuf, 3); in mcp4725_store_eeprom()
132 if (inoutbuf[0] & 0x80) in mcp4725_store_eeprom()