Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 208aefa2 authored by Christophe Jaillet's avatar Christophe Jaillet Committed by Jeff Garzik
Browse files

drivers/net/r6040.c: correct bad use of round_jiffies()



Compared to other places in the kernel, I think that this driver misuses
the function round_jiffies.

Signed-off-by: default avatarChristophe Jaillet <christophe.jaillet@wanadoo.fr>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 8b983510
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */