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

Commit dd3fde11 authored by Anil Belur's avatar Anil Belur Committed by Greg Kroah-Hartman
Browse files

staging: speakup: speakup_dectlk.c - use time_before_eq()



- this replaces jiffies comparision with safer function using
  time_after_eq()

Signed-off-by: default avatarAnil Belur <askb23@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bc4f07c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,