Home
last modified time | relevance | path

Searched refs:num_fifo_bytes (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/staging/gpib/hp_82341/
H A Dhp_82341.c40 int num_fifo_bytes; in hp_82341_accel_read() local
76 num_fifo_bytes = length - 1; in hp_82341_accel_read()
77 while (i < num_fifo_bytes && *end == 0) { in hp_82341_accel_read()
82 block_size = min(num_fifo_bytes - i, hp_82341_fifo_size); in hp_82341_accel_read()
106 while (j < count && i < num_fifo_bytes) { in hp_82341_accel_read()
111 if (j < count && i < num_fifo_bytes) { in hp_82341_accel_read()
/linux/drivers/staging/gpib/agilent_82350b/
H A Dagilent_82350b.c41 int i, num_fifo_bytes; in agilent_82350b_accel_read() local
69 num_fifo_bytes = length - 1; in agilent_82350b_accel_read()
72 while (i < num_fifo_bytes && *end == 0) { in agilent_82350b_accel_read()
77 block_size = min(num_fifo_bytes - i, agilent_82350b_fifo_size); in agilent_82350b_accel_read()
98 for (j = 0; j < count && i < num_fifo_bytes; ++j) in agilent_82350b_accel_read()
/linux/drivers/staging/gpib/ines/
H A Dines_gpib.c104 unsigned int num_fifo_bytes, i; in pio_read() local
121 num_fifo_bytes = num_in_fifo_bytes(ines_priv); in pio_read()
122 if (num_fifo_bytes + *nbytes > length) in pio_read()
123 num_fifo_bytes = length - *nbytes; in pio_read()
125 for (i = 0; i < num_fifo_bytes; i++) in pio_read()