From dd3fde11d3642e37f563e43ef10cd03377923e50 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Mon, 30 Jun 2014 18:55:48 +0530 Subject: staging: speakup: speakup_dectlk.c - use time_before_eq() - this replaces jiffies comparision with safer function using time_after_eq() Signed-off-by: Anil Belur Signed-off-by: Greg Kroah-Hartman --- drivers/staging/speakup/speakup_dectlk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/staging/speakup/speakup_dectlk.c') diff --git a/drivers/staging/speakup/speakup_dectlk.c b/drivers/staging/speakup/speakup_dectlk.c index af848686be71..c07c9670eef4 100644 --- a/drivers/staging/speakup/speakup_dectlk.c +++ b/drivers/staging/speakup/speakup_dectlk.c @@ -267,7 +267,7 @@ static void do_catch_up(struct spk_synth *synth) else if (ch <= SPACE) { if (!in_escape && strchr(",.!?;:", last)) spk_serial_out(PROCSPEECH); - if (jiffies >= jiff_max) { + if (time_after_eq(jiffies, jiff_max)) { if (!in_escape) spk_serial_out(PROCSPEECH); spin_lock_irqsave(&speakup_info.spinlock, -- cgit v1.2.3-59-g8ed1b