Julia Lawall ac0e4b7d31 drivers/char/ds1286.c: use time_before, time_before_eq, etc
The functions time_before, time_before_eq, time_after, and time_after_eq
are more robust for comparing jiffies against other values.

A simplified version of the semantic patch making this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@ change_compare_np @
expression E;
@@

(
- jiffies <= E
+ time_before_eq(jiffies,E)
|
- jiffies >= E
+ time_after_eq(jiffies,E)
|
- jiffies < E
+ time_before(jiffies,E)
|
- jiffies > E
+ time_after(jiffies,E)
)

@ include depends on change_compare_np @
@@

#include <linux/jiffies.h>

@ no_include depends on !include && change_compare_np @
@@

  #include <linux/...>
+ #include <linux/jiffies.h>
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-04-30 08:29:45 -07:00
..
2008-04-30 08:29:44 -07:00
2008-04-29 08:06:01 -07:00
2008-04-30 08:29:45 -07:00
2008-02-08 09:22:41 -08:00
2007-10-17 08:42:52 -07:00
2008-02-03 17:11:42 +02:00
2008-04-30 08:29:44 -07:00
2008-04-04 18:36:49 +02:00
2008-04-29 08:05:59 -07:00
2008-02-07 08:42:25 -08:00
2008-02-07 08:42:25 -08:00
2008-04-29 08:05:59 -07:00
2008-04-30 08:29:43 -07:00
2008-04-30 08:29:43 -07:00
2008-04-30 08:29:39 -07:00
2008-02-07 08:42:34 -08:00
2008-04-30 08:29:40 -07:00
2008-04-30 08:29:40 -07:00
2008-03-30 14:20:23 -07:00
2007-07-21 17:49:16 -07:00
2008-04-30 08:29:40 -07:00
2008-04-30 08:29:39 -07:00
2008-04-29 08:06:27 -07:00
2008-04-29 08:06:27 -07:00
2008-04-30 08:29:39 -07:00
2008-04-30 08:29:39 -07:00
2008-04-30 08:29:41 -07:00
2008-04-30 08:29:40 -07:00
2008-04-30 08:29:40 -07:00
2008-04-30 08:29:40 -07:00