Commit aa0c7285 authored by Allen Pais's avatar Allen Pais Committed by David S. Miller

drivers: net: am79c961: use setup_timer() helper.

Use setup_timer function instead of initializing timer with the
    function and data fields.
Signed-off-by: default avatarAllen Pais <allen.lkml@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b0b404bd
...@@ -728,9 +728,7 @@ static int am79c961_probe(struct platform_device *pdev) ...@@ -728,9 +728,7 @@ static int am79c961_probe(struct platform_device *pdev)
am79c961_banner(); am79c961_banner();
spin_lock_init(&priv->chip_lock); spin_lock_init(&priv->chip_lock);
init_timer(&priv->timer); setup_timer(&priv->timer, am79c961_timer, (unsigned long)dev);
priv->timer.data = (unsigned long)dev;
priv->timer.function = am79c961_timer;
if (am79c961_hw_init(dev)) if (am79c961_hw_init(dev))
goto release; goto release;
......
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