mirror of https://gitee.com/openkylin/linux.git
drivers: net: et131x: 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
aa0c728599
commit
07b6901f61
|
@ -3624,11 +3624,10 @@ static int et131x_open(struct net_device *netdev)
|
|||
int result;
|
||||
|
||||
/* Start the timer to track NIC errors */
|
||||
init_timer(&adapter->error_timer);
|
||||
setup_timer(&adapter->error_timer, et131x_error_timer_handler,
|
||||
(unsigned long)adapter);
|
||||
adapter->error_timer.expires = jiffies +
|
||||
msecs_to_jiffies(TX_ERROR_PERIOD);
|
||||
adapter->error_timer.function = et131x_error_timer_handler;
|
||||
adapter->error_timer.data = (unsigned long)adapter;
|
||||
add_timer(&adapter->error_timer);
|
||||
|
||||
result = request_irq(irq, et131x_isr,
|
||||
|
|
Loading…
Reference in New Issue