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 55/64] drivers: net: hamradio: 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/hamradio/6pack.c | 4 +---
    1 file changed, 1 insertion(+), 3 deletions(-)

    diff --git a/drivers/net/hamradio/6pack.c b/drivers/net/hamradio/6pack.c
    index 021a8ec..97fe8df 100644
    --- a/drivers/net/hamradio/6pack.c
    +++ b/drivers/net/hamradio/6pack.c
    @@ -623,9 +623,7 @@ static int sixpack_open(struct tty_struct *tty)

    netif_start_queue(dev);

    - init_timer(&sp->tx_t);
    - sp->tx_t.function = sp_xmit_on_air;
    - sp->tx_t.data = (unsigned long) sp;
    + setup_timer(&sp->tx_t, sp_xmit_on_air, (unsigned long)sp);

    init_timer(&sp->resync_t);

    --
    2.7.4
    \
     
     \ /
      Last update: 2017-09-21 19:37    [W:5.265 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site