提交 d613750e 编写于 作者: W Wang Qing 提交者: Hans Verkuil

media: wl128x: 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: NWang Qing <wangqing@vivo.com>
Signed-off-by: NHans Verkuil <hverkuil-cisco@xs4all.nl>
上级 39878a59
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
#include <linux/firmware.h> #include <linux/firmware.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/nospec.h> #include <linux/nospec.h>
#include <linux/jiffies.h>
#include "fmdrv.h" #include "fmdrv.h"
#include "fmdrv_v4l2.h" #include "fmdrv_v4l2.h"
...@@ -342,7 +343,7 @@ static void send_tasklet(struct tasklet_struct *t) ...@@ -342,7 +343,7 @@ static void send_tasklet(struct tasklet_struct *t)
return; return;
/* Check, is there any timeout happened to last transmitted packet */ /* Check, is there any timeout happened to last transmitted packet */
if ((jiffies - fmdev->last_tx_jiffies) > FM_DRV_TX_TIMEOUT) { if (time_is_before_jiffies(fmdev->last_tx_jiffies + FM_DRV_TX_TIMEOUT)) {
fmerr("TX timeout occurred\n"); fmerr("TX timeout occurred\n");
atomic_set(&fmdev->tx_cnt, 1); atomic_set(&fmdev->tx_cnt, 1);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册