提交 4da006c6 编写于 作者: M Marcelo Feitoza Parisi 提交者: Linus Torvalds

[PATCH] dvb: ttusb-budget: use time_after_eq()

Use of the time_after_eq() macro, defined at linux/jiffies.h, which deal
with wrapping correctly and are nicer to read.
Signed-off-by: NMarcelo Feitoza Parisi <marcelo@feitoza.com.br>
Signed-off-by: NDomen Puncer <domen@coderock.org>
Signed-off-by: NJohannes Stezenbach <js@linuxtv.org>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 1ac2854c
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/time.h> #include <linux/time.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/jiffies.h>
#include <asm/semaphore.h> #include <asm/semaphore.h>
#include "dvb_frontend.h" #include "dvb_frontend.h"
...@@ -570,7 +571,8 @@ static void ttusb_handle_sec_data(struct ttusb_channel *channel, ...@@ -570,7 +571,8 @@ static void ttusb_handle_sec_data(struct ttusb_channel *channel,
const u8 * data, int len); const u8 * data, int len);
#endif #endif
static int numpkt = 0, lastj, numts, numstuff, numsec, numinvalid; static int numpkt = 0, numts, numstuff, numsec, numinvalid;
static unsigned long lastj;
static void ttusb_process_muxpack(struct ttusb *ttusb, const u8 * muxpack, static void ttusb_process_muxpack(struct ttusb *ttusb, const u8 * muxpack,
int len) int len)
...@@ -779,7 +781,7 @@ static void ttusb_iso_irq(struct urb *urb, struct pt_regs *ptregs) ...@@ -779,7 +781,7 @@ static void ttusb_iso_irq(struct urb *urb, struct pt_regs *ptregs)
u8 *data; u8 *data;
int len; int len;
numpkt++; numpkt++;
if ((jiffies - lastj) >= HZ) { if (time_after_eq(jiffies, lastj + HZ)) {
#if DEBUG > 2 #if DEBUG > 2
printk printk
("frames/s: %d (ts: %d, stuff %d, sec: %d, invalid: %d, all: %d)\n", ("frames/s: %d (ts: %d, stuff %d, sec: %d, invalid: %d, all: %d)\n",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册