mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-07 14:03:05 +00:00
rtl8188eu: Routine rtw_get_current_time() is a synonym for jiffies
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
537fff9e9d
commit
45a86628d2
32 changed files with 127 additions and 133 deletions
|
@ -1396,7 +1396,7 @@ sint ap2sta_data_frame(
|
|||
/* RTW_INFO("After send deauth , %u ms has elapsed.\n", rtw_get_passing_time_ms(send_issue_deauth_time)); */
|
||||
|
||||
if (rtw_get_passing_time_ms(send_issue_deauth_time) > 10000 || send_issue_deauth_time == 0) {
|
||||
send_issue_deauth_time = rtw_get_current_time();
|
||||
send_issue_deauth_time = jiffies;
|
||||
|
||||
RTW_INFO("issue_deauth to the ap=" MAC_FMT " for the reason(7)\n", MAC_ARG(pattrib->bssid));
|
||||
|
||||
|
@ -4076,7 +4076,7 @@ void rx_query_phy_status(
|
|||
|
||||
if ((start_time == 0) || (rtw_get_passing_time_ms(start_time) > 5000)) {
|
||||
RTW_PRINT("Warning!!! %s: Confilc mac addr!!\n", __func__);
|
||||
start_time = rtw_get_current_time();
|
||||
start_time = jiffies;
|
||||
}
|
||||
pdbgpriv->dbg_rx_conflic_mac_addr_cnt++;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue