[DVB patch 4/5] dvb_frontend: use time_after()

From: Johannes Stezenbach
Date: Sun May 22 2005 - 19:01:35 EST


Use time_after() macro.

Signed-off-by: Marcelo Feitoza Parisi <marcelo@xxxxxxxxxxxxxx>
Signed-off-by: Domen Puncer <domen@xxxxxxxxxxxx>
Signed-off-by: Johannes Stezenbach <js@xxxxxxxxxxx>
---
drivers/media/dvb/dvb-core/dvb_frontend.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)

Index: linux-2.6.12-rc4-git3/drivers/media/dvb/dvb-core/dvb_frontend.c
===================================================================
--- linux-2.6.12-rc4-git3.orig/drivers/media/dvb/dvb-core/dvb_frontend.c 2005-05-19 22:52:12.000000000 +0200
+++ linux-2.6.12-rc4-git3/drivers/media/dvb/dvb-core/dvb_frontend.c 2005-05-23 00:57:16.000000000 +0200
@@ -35,6 +35,7 @@
#include <linux/moduleparam.h>
#include <linux/list.h>
#include <linux/suspend.h>
+#include <linux/jiffies.h>
#include <asm/processor.h>
#include <asm/semaphore.h>

@@ -327,7 +328,8 @@ static int dvb_frontend_is_exiting(struc
return 1;

if (fepriv->dvbdev->writers == 1)
- if (jiffies - fepriv->release_jiffies > dvb_shutdown_timeout * HZ)
+ if (time_after(jiffies, fepriv->release_jiffies +
+ dvb_shutdown_timeout * HZ))
return 1;

return 0;

--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/