Searched refs:char_time (Results 1 - 9 of 9) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Damiserial.c1518 unsigned long orig_jiffies, char_time; local
1544 char_time = (info->timeout - HZ/50) / info->xmit_fifo_size;
1545 char_time = char_time / 5;
1546 if (char_time == 0)
1547 char_time = 1;
1549 char_time = min_t(unsigned long, char_time, timeout);
1562 printk("In rs_wait_until_sent(%d) check=%lu...", timeout, char_time);
1569 msleep_interruptible(jiffies_to_msecs(char_time));
[all...]
H A Dmxser.c1961 unsigned long orig_jiffies, char_time; local
1980 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
1981 char_time = char_time / 5;
1982 if (char_time == 0)
1983 char_time = 1;
1984 if (timeout && timeout < char_time)
1985 char_time = timeout;
1999 timeout, char_time);
2008 schedule_timeout_interruptible(char_time);
[all...]
H A Dcyclades.c1648 int char_time; local
1665 char_time = (info->timeout - HZ / 50) / info->xmit_fifo_size;
1666 char_time = char_time / 5;
1667 if (char_time <= 0)
1668 char_time = 1;
1672 char_time = min(char_time, timeout);
1686 timeout, char_time, jiffies);
1694 if (msleep_interruptible(jiffies_to_msecs(char_time)))
[all...]
H A Dsynclink.c3146 unsigned long orig_jiffies, char_time; local
3170 char_time = info->timeout/(32 * 5);
3171 if (!char_time)
3172 char_time++;
3174 char_time = 1;
3177 char_time = min_t(unsigned long, char_time, timeout);
3182 msleep_interruptible(jiffies_to_msecs(char_time));
3191 msleep_interruptible(jiffies_to_msecs(char_time));
H A Dsynclinkmp.c1060 unsigned long orig_jiffies, char_time; local
1084 char_time = info->timeout/(32 * 5);
1085 if (!char_time)
1086 char_time++;
1088 char_time = 1;
1091 char_time = min_t(unsigned long, char_time, timeout);
1095 msleep_interruptible(jiffies_to_msecs(char_time));
1107 msleep_interruptible(jiffies_to_msecs(char_time));
H A Dsynclink_gt.c898 unsigned long orig_jiffies, char_time; local
917 char_time = info->timeout/(32 * 5);
918 if (!char_time)
919 char_time++;
921 char_time = 1;
924 char_time = min_t(unsigned long, char_time, timeout);
927 msleep_interruptible(jiffies_to_msecs(char_time));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dserial_core.c1365 unsigned long char_time, expire; local
1378 char_time = (port->timeout - HZ/50) / port->fifosize;
1379 char_time = char_time / 5;
1380 if (char_time == 0)
1381 char_time = 1;
1382 if (timeout && timeout < char_time)
1383 char_time = timeout;
1403 * Check whether the transmitter is empty every 'char_time'.
1408 msleep_interruptible(jiffies_to_msecs(char_time));
[all...]
H A D68360serial.c1615 unsigned long orig_jiffies, char_time; local
1636 char_time = 1;
1638 char_time = min(char_time, (unsigned long)timeout);
1640 printk("In rs_wait_until_sent(%d) check=%lu...", timeout, char_time);
1654 msleep_interruptible(jiffies_to_msecs(char_time));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/pcmcia/
H A Dsynclink_cs.c2401 unsigned long orig_jiffies, char_time; local
2425 char_time = info->timeout/(32 * 5);
2426 if (!char_time)
2427 char_time++;
2429 char_time = 1;
2432 char_time = min_t(unsigned long, char_time, timeout);
2436 msleep_interruptible(jiffies_to_msecs(char_time));
2445 msleep_interruptible(jiffies_to_msecs(char_time));

Completed in 188 milliseconds