mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
drivers: net: am79c961: use setup_timer() helper.
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais <allen.lkml@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b0b404bd9b
commit
aa0c728599
1 changed files with 1 additions and 3 deletions
|
@ -728,9 +728,7 @@ static int am79c961_probe(struct platform_device *pdev)
|
|||
am79c961_banner();
|
||||
|
||||
spin_lock_init(&priv->chip_lock);
|
||||
init_timer(&priv->timer);
|
||||
priv->timer.data = (unsigned long)dev;
|
||||
priv->timer.function = am79c961_timer;
|
||||
setup_timer(&priv->timer, am79c961_timer, (unsigned long)dev);
|
||||
|
||||
if (am79c961_hw_init(dev))
|
||||
goto release;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue