diff options
author | S.Çağlar Onur <caglar@pardus.org.tr> | 2008-03-17 05:36:26 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-03-25 17:44:05 -0400 |
commit | 59861bc6ee475542c66f4b24b9f5b5148f1d4f0e (patch) | |
tree | 3a04624b1bd4bd0ee4ab367e21c60aee94807923 /arch/powerpc/platforms/iseries/pci.c | |
parent | 96366a8d3f17ee964802378d4a1f51fda86f070e (diff) |
[POWERPC] arch/powerpc/platforms/iseries/pci.c: Use time_* macros
The functions time_before, time_before_eq, time_after, and
time_after_eq are more robust for comparing jiffies against other
values.
This implements usage of the time_after() macro, defined at
linux/jiffies.h, which deals with wrapping correctly.
Signed-off-by: S.Çağlar Onur <caglar@pardus.org.tr>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/iseries/pci.c')
-rw-r--r-- | arch/powerpc/platforms/iseries/pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/iseries/pci.c b/arch/powerpc/platforms/iseries/pci.c index cc562e4c2f32..02a634faedbe 100644 --- a/arch/powerpc/platforms/iseries/pci.c +++ b/arch/powerpc/platforms/iseries/pci.c | |||
@@ -23,6 +23,7 @@ | |||
23 | 23 | ||
24 | #undef DEBUG | 24 | #undef DEBUG |
25 | 25 | ||
26 | #include <linux/jiffies.h> | ||
26 | #include <linux/kernel.h> | 27 | #include <linux/kernel.h> |
27 | #include <linux/list.h> | 28 | #include <linux/list.h> |
28 | #include <linux/string.h> | 29 | #include <linux/string.h> |
@@ -586,7 +587,7 @@ static inline struct device_node *xlate_iomm_address( | |||
586 | static unsigned long last_jiffies; | 587 | static unsigned long last_jiffies; |
587 | static int num_printed; | 588 | static int num_printed; |
588 | 589 | ||
589 | if ((jiffies - last_jiffies) > 60 * HZ) { | 590 | if (time_after(jiffies, last_jiffies + 60 * HZ)) { |
590 | last_jiffies = jiffies; | 591 | last_jiffies = jiffies; |
591 | num_printed = 0; | 592 | num_printed = 0; |
592 | } | 593 | } |