Home
last modified time | relevance | path

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

/linux/include/linux/
H A Dntb.h330 u32 (*msg_read)(struct ntb_dev *ntb, int *pidx, int midx); member
392 !ops->msg_read == !ops->msg_count && in ntb_dev_ops_is_valid()
1538 if (!ntb->ops->msg_read) in ntb_msg_read()
1541 return ntb->ops->msg_read(ntb, pidx, midx); in ntb_msg_read()
/linux/drivers/media/tuners/
H A Dtda8290.c662 struct i2c_msg msg_read[] = { in tda8290_probe() local
668 if (i2c_transfer(i2c_props->adap, msg_read, 2) != 2) { in tda8290_probe()
689 struct i2c_msg msg_read[] = { in tda8295_probe() local
695 if (i2c_transfer(i2c_props->adap, msg_read, 2) != 2) { in tda8295_probe()
/linux/drivers/media/usb/cx231xx/
H A Dcx231xx-cards.c1221 struct i2c_msg msg_read = { .addr = client->addr, .flags = I2C_M_RD }; in read_eeprom() local
1231 msg_read.len = (len_todo > 64) ? 64 : len_todo; in read_eeprom()
1232 msg_read.buf = eedata_cur; in read_eeprom()
1234 ret = i2c_transfer(client->adapter, &msg_read, 1); in read_eeprom()
1239 eedata_cur += msg_read.len; in read_eeprom()
1240 len_todo -= msg_read.len; in read_eeprom()
/linux/drivers/ntb/hw/idt/
H A Dntb_hw_idt.c2265 .msg_read = idt_ntb_msg_read,