SMBus Write Byte commands followed by a read command on the same I2C
address are not sent out to the chip as they wouldn't have any effect.
Signed-off-by: Michel Ludwig <michel.ludwig@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
printk(" %02x", msgs[i].buf[byte]);
}
+ /* SMBus Write Byte command followed by a read command */
+ if(msgs[i].len == 1 && i+1 < num && msgs[i+1].flags & I2C_M_RD
+ && msgs[i+1].addr == msgs[i].addr) {
+ prev_reg = msgs[i].buf[0];
+ continue;
+ }
+
rc = tm6000_read_write_usb (dev,
USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
REQ_16_SET_GET_I2CSEQ,