Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c65cfb5e authored by Esra Altintas's avatar Esra Altintas Committed by Greg Kroah-Hartman
Browse files

staging: speakup: remove jiffies comparison using time_after_eq() in speakup_dtlk.c



The following patch fixes the checkpatch.pl warning:
WARNING: Comparing jiffies is almost always wrong; prefer time_after,
time_before and friends

Signed-off-by: default avatarEsra Altintas <es.altintas@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0f709488
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -231,7 +231,7 @@ static void do_catch_up(struct spk_synth *synth)
		if (ch == '\n')
			ch = PROCSPEECH;
		spk_out(ch);
		if ((jiffies >= jiff_max) && (ch == SPACE)) {
		if (time_after_eq(jiffies, jiff_max) && (ch == SPACE)) {
			spk_out(PROCSPEECH);
			spin_lock_irqsave(&speakup_info.spinlock, flags);
			delay_time_val = delay_time->u.n.value;