diff options
Diffstat (limited to 'drivers/char/istallion.c')
-rw-r--r-- | drivers/char/istallion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/istallion.c b/drivers/char/istallion.c index f52f452b5..a1a6d93a1 100644 --- a/drivers/char/istallion.c +++ b/drivers/char/istallion.c @@ -2311,7 +2311,7 @@ static void stli_waituntilsent(struct tty_struct *tty, int timeout) if (signal_pending(current)) break; stli_delay(2); - if (jiffies >= tend) + if (time_after_eq(jiffies, tend)) break; } } |