Lines Matching refs:num_bytes
1000 static void omap_i2c_receive_data(struct omap_i2c_dev *omap, u8 num_bytes, in omap_i2c_receive_data() argument
1005 while (num_bytes--) { in omap_i2c_receive_data()
1021 static int omap_i2c_transmit_data(struct omap_i2c_dev *omap, u8 num_bytes, in omap_i2c_transmit_data() argument
1026 while (num_bytes--) { in omap_i2c_transmit_data()
1115 u8 num_bytes = 1; in omap_i2c_xfer_data() local
1118 num_bytes = omap->buf_len; in omap_i2c_xfer_data()
1122 num_bytes = (omap_i2c_read_reg(omap, in omap_i2c_xfer_data()
1126 omap_i2c_receive_data(omap, num_bytes, true); in omap_i2c_xfer_data()
1132 u8 num_bytes = 1; in omap_i2c_xfer_data() local
1135 num_bytes = omap->threshold; in omap_i2c_xfer_data()
1137 omap_i2c_receive_data(omap, num_bytes, false); in omap_i2c_xfer_data()
1143 u8 num_bytes = 1; in omap_i2c_xfer_data() local
1147 num_bytes = omap->buf_len; in omap_i2c_xfer_data()
1149 ret = omap_i2c_transmit_data(omap, num_bytes, true); in omap_i2c_xfer_data()
1158 u8 num_bytes = 1; in omap_i2c_xfer_data() local
1162 num_bytes = omap->threshold; in omap_i2c_xfer_data()
1164 ret = omap_i2c_transmit_data(omap, num_bytes, false); in omap_i2c_xfer_data()