projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1bcf233
)
media: stv0299: use time_is_before_jiffies() instead of open coding it
author
Wang Qing
<wangqing@vivo.com>
Tue, 15 Feb 2022 01:55:47 +0000
(17:55 -0800)
committer
Hans Verkuil
<hverkuil-cisco@xs4all.nl>
Tue, 22 Feb 2022 08:41:12 +0000
(09:41 +0100)
Use the helper function time_is_{before,after}_jiffies() to improve
code readability.
Signed-off-by: Wang Qing <wangqing@vivo.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/dvb-frontends/stv0299.c
patch
|
blob
|
history
diff --git
a/drivers/media/dvb-frontends/stv0299.c
b/drivers/media/dvb-frontends/stv0299.c
index 421395ea333436c50779415a1469e0a8ac2cf79d..00b2c63e21929ef926442d733885773fb13b66ae 100644
(file)
--- a/
drivers/media/dvb-frontends/stv0299.c
+++ b/
drivers/media/dvb-frontends/stv0299.c
@@
-183,7
+183,7
@@
static int stv0299_wait_diseqc_fifo (struct stv0299_state* state, int timeout)
dprintk ("%s\n", __func__);
while (stv0299_readreg(state, 0x0a) & 1) {
- if (
jiffies - start > timeout
) {
+ if (
time_is_before_jiffies(start + timeout)
) {
dprintk ("%s: timeout!!\n", __func__);
return -ETIMEDOUT;
}
@@
-200,7
+200,7
@@
static int stv0299_wait_diseqc_idle (struct stv0299_state* state, int timeout)
dprintk ("%s\n", __func__);
while ((stv0299_readreg(state, 0x0a) & 3) != 2 ) {
- if (
jiffies - start > timeout
) {
+ if (
time_is_before_jiffies(start + timeout)
) {
dprintk ("%s: timeout!!\n", __func__);
return -ETIMEDOUT;
}