Lines Matching refs:command
48 char read_write, u8 command, int size, union i2c_smbus_data * data) in stub_xfer() argument
73 chip->pointer = command; in stub_xfer()
76 addr, command); in stub_xfer()
89 chip->words[command] &= 0xff00; in stub_xfer()
90 chip->words[command] |= data->byte; in stub_xfer()
93 addr, data->byte, command); in stub_xfer()
95 data->byte = chip->words[command] & 0xff; in stub_xfer()
98 addr, data->byte, command); in stub_xfer()
100 chip->pointer = command + 1; in stub_xfer()
107 chip->words[command] = data->word; in stub_xfer()
110 addr, data->word, command); in stub_xfer()
112 data->word = chip->words[command]; in stub_xfer()
115 addr, data->word, command); in stub_xfer()