Lines Matching refs:num_bytes
938 static void omap_i2c_receive_data(struct omap_i2c_dev *dev, u8 num_bytes, in omap_i2c_receive_data() argument
943 while (num_bytes--) { in omap_i2c_receive_data()
959 static int omap_i2c_transmit_data(struct omap_i2c_dev *dev, u8 num_bytes, in omap_i2c_transmit_data() argument
964 while (num_bytes--) { in omap_i2c_transmit_data()
1071 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1074 num_bytes = dev->buf_len; in omap_i2c_isr_thread()
1078 num_bytes = (omap_i2c_read_reg(dev, in omap_i2c_isr_thread()
1082 omap_i2c_receive_data(dev, num_bytes, true); in omap_i2c_isr_thread()
1088 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1091 num_bytes = dev->threshold; in omap_i2c_isr_thread()
1093 omap_i2c_receive_data(dev, num_bytes, false); in omap_i2c_isr_thread()
1099 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1103 num_bytes = dev->buf_len; in omap_i2c_isr_thread()
1105 ret = omap_i2c_transmit_data(dev, num_bytes, true); in omap_i2c_isr_thread()
1114 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1118 num_bytes = dev->threshold; in omap_i2c_isr_thread()
1120 ret = omap_i2c_transmit_data(dev, num_bytes, false); in omap_i2c_isr_thread()