[patch 1/5] drivers/char/lp.c : Use of the time_after() macro

From: domen
Date: Sun Jul 31 2005 - 06:33:19 EST


From: Marcelo Feitoza Parisi <marcelo@xxxxxxxxxxxxxx>



Use of the time_after() macro, defined at linux/jiffies.h, which deal
with wrapping correctly and are nicer to read.

Signed-off-by: Marcelo Feitoza Parisi <marcelo@xxxxxxxxxxxxxx>
Signed-off-by: Domen Puncer <domen@xxxxxxxxxxxx>

---
lp.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)

Index: quilt/drivers/char/lp.c
===================================================================
--- quilt.orig/drivers/char/lp.c
+++ quilt/drivers/char/lp.c
@@ -128,6 +128,7 @@
#include <linux/console.h>
#include <linux/device.h>
#include <linux/wait.h>
+#include <linux/jiffies.h>

#include <linux/parport.h>
#undef LP_STATS
@@ -307,7 +308,7 @@ static ssize_t lp_write(struct file * fi
(LP_F(minor) & LP_ABORT));

#ifdef LP_STATS
- if (jiffies-lp_table[minor].lastcall > LP_TIME(minor))
+ if (time_after(jiffies, lp_table[minor].lastcall + LP_TIME(minor)))
lp_table[minor].runchars = 0;

lp_table[minor].lastcall = jiffies;

--
-
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/