From: Robin Schroer Date: Thu, 12 Jun 2014 23:17:30 +0000 (+0200) Subject: drivers/staging/speakup/main: fixed jiffie comparison X-Git-Tag: v3.17-rc1~123^2~1703 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d3cb1bffde15ee6e69532457bee20b5d424952b;p=platform%2Fkernel%2Flinux-exynos.git drivers/staging/speakup/main: fixed jiffie comparison speakup_key() used manual comparison of jiffies to determine the time since the last keypress, replaced it with time_after() Signed-off-by: Robin Schroer Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/speakup/main.c b/drivers/staging/speakup/main.c index 7de79d5..0cd3cdb 100644 --- a/drivers/staging/speakup/main.c +++ b/drivers/staging/speakup/main.c @@ -2067,7 +2067,7 @@ speakup_key(struct vc_data *vc, int shift_state, int keycode, u_short keysym, if (up_flag) goto out; if (last_keycode == keycode && - last_spk_jiffy + MAX_DELAY > jiffies) { + time_after(last_spk_jiffy + MAX_DELAY, jiffies)) { spk_close_press = 1; offset = spk_shift_table[shift_info + 32]; /* double press? */