Lines Matching refs:num_bytes
971 static void omap_i2c_receive_data(struct omap_i2c_dev *omap, u8 num_bytes, in omap_i2c_receive_data() argument
976 while (num_bytes--) { in omap_i2c_receive_data()
992 static int omap_i2c_transmit_data(struct omap_i2c_dev *omap, u8 num_bytes, in omap_i2c_transmit_data() argument
997 while (num_bytes--) { in omap_i2c_transmit_data()
1099 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1102 num_bytes = omap->buf_len; in omap_i2c_isr_thread()
1106 num_bytes = (omap_i2c_read_reg(omap, in omap_i2c_isr_thread()
1110 omap_i2c_receive_data(omap, num_bytes, true); in omap_i2c_isr_thread()
1116 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1119 num_bytes = omap->threshold; in omap_i2c_isr_thread()
1121 omap_i2c_receive_data(omap, num_bytes, false); in omap_i2c_isr_thread()
1127 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1131 num_bytes = omap->buf_len; in omap_i2c_isr_thread()
1133 ret = omap_i2c_transmit_data(omap, num_bytes, true); in omap_i2c_isr_thread()
1142 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1146 num_bytes = omap->threshold; in omap_i2c_isr_thread()
1148 ret = omap_i2c_transmit_data(omap, num_bytes, false); in omap_i2c_isr_thread()