From: Wang Qing Date: Tue, 15 Feb 2022 01:55:46 +0000 (-0800) Subject: media: si21xx: use time_is_before_jiffies() instead of open coding it X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1bcf233f1b17fa9646ff42383cdcc65b866a1dba;p=linux.git media: si21xx: use time_is_before_jiffies() instead of open coding it Use the helper function time_is_{before,after}_jiffies() to improve code readability. Signed-off-by: Wang Qing Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/dvb-frontends/si21xx.c b/drivers/media/dvb-frontends/si21xx.c index 001b235883891..2d29d2c4d434c 100644 --- a/drivers/media/dvb-frontends/si21xx.c +++ b/drivers/media/dvb-frontends/si21xx.c @@ -336,7 +336,7 @@ static int si21xx_wait_diseqc_idle(struct si21xx_state *state, int timeout) dprintk("%s\n", __func__); while ((si21_readreg(state, LNB_CTRL_REG_1) & 0x8) == 8) { - if (jiffies - start > timeout) { + if (time_is_before_jiffies(start + timeout)) { dprintk("%s: timeout!!\n", __func__); return -ETIMEDOUT; }