Commit 86af9cf0 authored by François Romieu's avatar François Romieu Committed by Jeff Garzik

[PATCH] r8169: mod_timer() expects an absolute time, not a relative offset.

parent 8d6eb2db
...@@ -614,7 +614,7 @@ static void rtl8169_phy_timer(unsigned long __opaque) ...@@ -614,7 +614,7 @@ static void rtl8169_phy_timer(unsigned long __opaque)
} }
} }
mod_timer(timer, RTL8169_PHY_TIMEOUT); mod_timer(timer, jiffies + RTL8169_PHY_TIMEOUT);
} }
static inline void rtl8169_delete_timer(struct net_device *dev) static inline void rtl8169_delete_timer(struct net_device *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment