Lines Matching refs:num_bytes
937 static void omap_i2c_receive_data(struct omap_i2c_dev *omap, u8 num_bytes, in omap_i2c_receive_data() argument
942 while (num_bytes--) { in omap_i2c_receive_data()
958 static int omap_i2c_transmit_data(struct omap_i2c_dev *omap, u8 num_bytes, in omap_i2c_transmit_data() argument
963 while (num_bytes--) { in omap_i2c_transmit_data()
1070 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1073 num_bytes = omap->buf_len; in omap_i2c_isr_thread()
1077 num_bytes = (omap_i2c_read_reg(omap, in omap_i2c_isr_thread()
1081 omap_i2c_receive_data(omap, num_bytes, true); in omap_i2c_isr_thread()
1087 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1090 num_bytes = omap->threshold; in omap_i2c_isr_thread()
1092 omap_i2c_receive_data(omap, num_bytes, false); in omap_i2c_isr_thread()
1098 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1102 num_bytes = omap->buf_len; in omap_i2c_isr_thread()
1104 ret = omap_i2c_transmit_data(omap, num_bytes, true); in omap_i2c_isr_thread()
1113 u8 num_bytes = 1; in omap_i2c_isr_thread() local
1117 num_bytes = omap->threshold; in omap_i2c_isr_thread()
1119 ret = omap_i2c_transmit_data(omap, num_bytes, false); in omap_i2c_isr_thread()