Lines Matching defs:num_bytes
999 static void omap_i2c_receive_data(struct omap_i2c_dev *omap, u8 num_bytes,
1004 while (num_bytes--) {
1020 static int omap_i2c_transmit_data(struct omap_i2c_dev *omap, u8 num_bytes,
1025 while (num_bytes--) {
1126 u8 num_bytes = 1;
1129 num_bytes = omap->buf_len;
1133 num_bytes = (omap_i2c_read_reg(omap,
1137 omap_i2c_receive_data(omap, num_bytes, true);
1143 u8 num_bytes = 1;
1146 num_bytes = omap->threshold;
1148 omap_i2c_receive_data(omap, num_bytes, false);
1154 u8 num_bytes = 1;
1158 num_bytes = omap->buf_len;
1160 ret = omap_i2c_transmit_data(omap, num_bytes, true);
1169 u8 num_bytes = 1;
1173 num_bytes = omap->threshold;
1175 ret = omap_i2c_transmit_data(omap, num_bytes, false);