Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0371fa4f authored by Wei Yongjun's avatar Wei Yongjun Committed by Greg Kroah-Hartman
Browse files

staging: ks7010: ks_wlan_net: Use setup_timer instead of init_timer and data fields



Use setup_timer function instead of initializing timer with the function
and data fields

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 35092b6d
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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);