This fixes a problem where cy_wait_until_sent() miscalculates (calculate
-1 on a unsigned long) the "char_time" parameter passed to
schedule_timeout().
Fix that by making it a signed long, and checking for negative value.
struct cyclades_port * info = (struct cyclades_port *)tty->driver_data;
unsigned char *base_addr;
int card,chip,channel,index;
- unsigned long orig_jiffies, char_time;
+ unsigned long orig_jiffies;
+ signed long char_time;
if (serial_paranoia_check(info, tty->name, "cy_wait_until_sent"))
return;
*/
char_time = (info->timeout - HZ/50) / info->xmit_fifo_size;
char_time = char_time / 5;
- if (char_time == 0)
+ if (char_time <= 0)
char_time = 1;
if (timeout < 0)
timeout = 0;