drivers/net/r6040.c: correct bad use of round_jiffies()
authorChristophe Jaillet <christophe.jaillet@wanadoo.fr>
Thu, 15 May 2008 21:26:22 +0000 (23:26 +0200)
committerJeff Garzik <jgarzik@redhat.com>
Thu, 12 Jun 2008 02:25:38 +0000 (22:25 -0400)
Compared to other places in the kernel, I think that this driver misuses
the function round_jiffies.

Signed-off-by: Christophe Jaillet <christophe.jaillet@wanadoo.fr>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/net/r6040.c

index 169edc1..858b191 100644 (file)
@@ -733,7 +733,7 @@ static void r6040_timer(unsigned long data)
        }
 
        /* Timer active again */
-       mod_timer(&lp->timer, jiffies + round_jiffies(HZ));
+       mod_timer(&lp->timer, round_jiffies(jiffies + HZ));
 }
 
 /* Read/set MAC address routines */