lkml.org 
[lkml]   [2017]   [Sep]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 44/64] drivers: net: pxa168: use setup_timer() helper.
    Date
        Use setup_timer function instead of initializing timer with the
    function and data fields.

    Signed-off-by: Allen Pais <allen.lkml@gmail.com>
    ---
    drivers/net/ethernet/marvell/pxa168_eth.c | 5 ++---
    1 file changed, 2 insertions(+), 3 deletions(-)

    diff --git a/drivers/net/ethernet/marvell/pxa168_eth.c b/drivers/net/ethernet/marvell/pxa168_eth.c
    index 9937249..91b1c15 100644
    --- a/drivers/net/ethernet/marvell/pxa168_eth.c
    +++ b/drivers/net/ethernet/marvell/pxa168_eth.c
    @@ -1496,9 +1496,8 @@ static int pxa168_eth_probe(struct platform_device *pdev)
    netif_napi_add(dev, &pep->napi, pxa168_rx_poll, pep->rx_ring_size);

    memset(&pep->timeout, 0, sizeof(struct timer_list));
    - init_timer(&pep->timeout);
    - pep->timeout.function = rxq_refill_timer_wrapper;
    - pep->timeout.data = (unsigned long)pep;
    + setup_timer(&pep->timeout, rxq_refill_timer_wrapper,
    + (unsigned long)pep);

    pep->smi_bus = mdiobus_alloc();
    if (!pep->smi_bus) {
    --
    2.7.4
    \
     
     \ /
      Last update: 2017-09-21 19:37    [W:2.217 / U:0.064 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site