Commit 875b7dec authored by Vaishali Thakkar's avatar Vaishali Thakkar Committed by Greg Kroah-Hartman

Staging: rtl8712: Use mod_timer

This patch introduces the use of API function mod_timer
instead of driver specific function as it is a more
efficient and standard way to update the expire field of
an active timer.
Signed-off-by: default avatarVaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a6c6e298
...@@ -129,7 +129,8 @@ static inline void handle_pairwise_key(struct sta_info *psta, ...@@ -129,7 +129,8 @@ static inline void handle_pairwise_key(struct sta_info *psta,
memcpy(psta->tkiprxmickey. skey, &(param->u.crypt. memcpy(psta->tkiprxmickey. skey, &(param->u.crypt.
key[24]), 8); key[24]), 8);
padapter->securitypriv. busetkipkey = false; padapter->securitypriv. busetkipkey = false;
_set_timer(&padapter->securitypriv.tkip_timer, 50); mod_timer(&padapter->securitypriv.tkip_timer,
jiffies + msecs_to_jiffies(50));
} }
r8712_setstakey_cmd(padapter, (unsigned char *)psta, true); r8712_setstakey_cmd(padapter, (unsigned char *)psta, true);
} }
...@@ -153,8 +154,8 @@ static inline void handle_group_key(struct ieee_param *param, ...@@ -153,8 +154,8 @@ static inline void handle_group_key(struct ieee_param *param,
if (padapter->registrypriv.power_mgnt > PS_MODE_ACTIVE) { if (padapter->registrypriv.power_mgnt > PS_MODE_ACTIVE) {
if (padapter->registrypriv.power_mgnt != padapter-> if (padapter->registrypriv.power_mgnt != padapter->
pwrctrlpriv.pwr_mode) pwrctrlpriv.pwr_mode)
_set_timer(&(padapter->mlmepriv.dhcp_timer), mod_timer(&padapter->mlmepriv.dhcp_timer,
60000); jiffies + msecs_to_jiffies(60000));
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment