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.c28 int num_fifo_bytes; in hp_82341_accel_read() local
63 num_fifo_bytes = length - 1; in hp_82341_accel_read()
64 while (i < num_fifo_bytes && *end == 0) { in hp_82341_accel_read()
69 if (num_fifo_bytes - i < hp_82341_fifo_size) in hp_82341_accel_read()
70 block_size = num_fifo_bytes - i; in hp_82341_accel_read()
97 while (j < count && i < num_fifo_bytes) { in hp_82341_accel_read()
102 if (j < count && i < num_fifo_bytes) { in hp_82341_accel_read()
/linux/drivers/staging/gpib/agilent_82350b/
H A Dagilent_82350b.c31 int i, num_fifo_bytes; in agilent_82350b_accel_read() local
65 num_fifo_bytes = length - 1; in agilent_82350b_accel_read()
67 while (i < num_fifo_bytes && *end == 0) { in agilent_82350b_accel_read()
72 if (num_fifo_bytes - i < agilent_82350b_fifo_size) in agilent_82350b_accel_read()
73 block_size = num_fifo_bytes - i; in agilent_82350b_accel_read()
97 for (j = 0; j < count && i < num_fifo_bytes; ++j) in agilent_82350b_accel_read()
/linux/drivers/staging/gpib/ines/
H A Dines_gpib.c100 unsigned int num_fifo_bytes, i; in pio_read() local
118 num_fifo_bytes = num_in_fifo_bytes(ines_priv); in pio_read()
119 if (num_fifo_bytes + *nbytes > length) { in pio_read()
121 (long)(num_fifo_bytes - (length - *nbytes))); in pio_read()
122 num_fifo_bytes = length - *nbytes; in pio_read()
124 for (i = 0; i < num_fifo_bytes; i++) in pio_read()