Commit 97815186 authored by Kees Cook's avatar Kees Cook Committed by David S. Miller

drivers/net: nuvoton: Convert timers to use timer_setup()

In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly.

Cc: Wan ZongShun <mcuos.com@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: netdev@vger.kernel.org
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 3248f77f
...@@ -253,10 +253,10 @@ static void update_linkspeed(struct net_device *dev) ...@@ -253,10 +253,10 @@ static void update_linkspeed(struct net_device *dev)
netif_carrier_on(dev); netif_carrier_on(dev);
} }
static void w90p910_check_link(unsigned long dev_id) static void w90p910_check_link(struct timer_list *t)
{ {
struct net_device *dev = (struct net_device *) dev_id; struct w90p910_ether *ether = from_timer(ether, t, check_timer);
struct w90p910_ether *ether = netdev_priv(dev); struct net_device *dev = ether->mii.dev;
update_linkspeed(dev); update_linkspeed(dev);
mod_timer(&ether->check_timer, jiffies + msecs_to_jiffies(1000)); mod_timer(&ether->check_timer, jiffies + msecs_to_jiffies(1000));
...@@ -957,8 +957,7 @@ static int w90p910_ether_setup(struct net_device *dev) ...@@ -957,8 +957,7 @@ static int w90p910_ether_setup(struct net_device *dev)
ether->mii.mdio_read = w90p910_mdio_read; ether->mii.mdio_read = w90p910_mdio_read;
ether->mii.mdio_write = w90p910_mdio_write; ether->mii.mdio_write = w90p910_mdio_write;
setup_timer(&ether->check_timer, w90p910_check_link, timer_setup(&ether->check_timer, w90p910_check_link, 0);
(unsigned long)dev);
return 0; return 0;
} }
......
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