[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1476801513-25775-1-git-send-email-weiyj.lk@gmail.com>
Date: Tue, 18 Oct 2016 14:38:33 +0000
From: Wei Yongjun <weiyj.lk@...il.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Muraru Mihaela <mihaela.muraru21@...il.com>,
Wolfram Sang <wsa@...-dreams.de>,
Georgiana Rodica Chelu <georgiana.chelu93@...il.com>,
Sabitha George <sabitha.george@...il.com>,
Bhumika Goyal <bhumirks@...il.com>
Cc: Wei Yongjun <weiyongjun1@...wei.com>, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH -next] staging: ks7010: ks_wlan_net: Use setup_timer instead of init_timer and data fields
From: Wei Yongjun <weiyongjun1@...wei.com>
Use setup_timer function instead of initializing timer with the function
and data fields
Signed-off-by: Wei Yongjun <weiyongjun1@...wei.com>
---
drivers/staging/ks7010/ks_wlan_net.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c
index 7b864c0..3c58f84 100644
--- a/drivers/staging/ks7010/ks_wlan_net.c
+++ b/drivers/staging/ks7010/ks_wlan_net.c
@@ -3460,9 +3460,8 @@ int ks_wlan_net_start(struct net_device *dev)
/* phy information update timer */
atomic_set(&update_phyinfo, 0);
- init_timer(&update_phyinfo_timer);
- update_phyinfo_timer.function = ks_wlan_update_phyinfo_timeout;
- update_phyinfo_timer.data = (unsigned long)priv;
+ setup_timer(&update_phyinfo_timer, ks_wlan_update_phyinfo_timeout,
+ (unsigned long)priv);
/* dummy address set */
memcpy(priv->eth_addr, dummy_addr, ETH_ALEN);
Powered by blists - more mailing lists