diff options
author | Marcelo Feitoza Parisi <marcelo@feitoza.com.br> | 2005-07-19 16:55:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-07-19 16:55:14 -0400 |
commit | e1bd232b641a0d0ef184a5154409ef38aebb3155 (patch) | |
tree | c60395cf79f0e17a247dc1291ed4f8bea0ad1aa5 /drivers/atm | |
parent | 322361b3712af97c19ab730b410f9ae5d9aad4c3 (diff) |
[ATM]: [idt77252] use time_after() macro
Signed-off-by: Marcelo Feitoza Parisi <marcelo@feitoza.com.br>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/idt77252.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/atm/idt77252.c b/drivers/atm/idt77252.c index baaf1a3d2242..30b7e990ed0b 100644 --- a/drivers/atm/idt77252.c +++ b/drivers/atm/idt77252.c | |||
@@ -46,6 +46,7 @@ static char const rcsid[] = | |||
46 | #include <linux/init.h> | 46 | #include <linux/init.h> |
47 | #include <linux/bitops.h> | 47 | #include <linux/bitops.h> |
48 | #include <linux/wait.h> | 48 | #include <linux/wait.h> |
49 | #include <linux/jiffies.h> | ||
49 | #include <asm/semaphore.h> | 50 | #include <asm/semaphore.h> |
50 | #include <asm/io.h> | 51 | #include <asm/io.h> |
51 | #include <asm/uaccess.h> | 52 | #include <asm/uaccess.h> |
@@ -780,7 +781,7 @@ push_on_scq(struct idt77252_dev *card, struct vc_map *vc, struct sk_buff *skb) | |||
780 | return 0; | 781 | return 0; |
781 | 782 | ||
782 | out: | 783 | out: |
783 | if (jiffies - scq->trans_start > HZ) { | 784 | if (time_after(jiffies, scq->trans_start + HZ)) { |
784 | printk("%s: Error pushing TBD for %d.%d\n", | 785 | printk("%s: Error pushing TBD for %d.%d\n", |
785 | card->name, vc->tx_vcc->vpi, vc->tx_vcc->vci); | 786 | card->name, vc->tx_vcc->vpi, vc->tx_vcc->vci); |
786 | #ifdef CONFIG_ATM_IDT77252_DEBUG | 787 | #ifdef CONFIG_ATM_IDT77252_DEBUG |