staging: rtl8188eu: Line over 100 characters
Break lines into multiple lines to respect 100 character width limit. Reported by checkpatch.pl Signed-off-by: Jignesh Patel <jigs0101@gmail.com> Link: https://lore.kernel.org/r/20210723094524.8811-1-jigs0101@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0104c061a8
commit
66c1c64ea8
|
@ -254,9 +254,12 @@ void expire_timeout_chk(struct adapter *padapter)
|
|||
updated = ap_free_sta(padapter, psta, true,
|
||||
WLAN_REASON_DEAUTH_LEAVING);
|
||||
} else {
|
||||
/* TODO: Aging mechanism to digest frames in sleep_q to avoid running out of xmitframe */
|
||||
/* TODO: Aging mechanism to digest frames in
|
||||
* sleep_q to avoid running out of xmitframe
|
||||
*/
|
||||
if (psta->sleepq_len > (NR_XMITFRAME / pstapriv->asoc_list_cnt) &&
|
||||
padapter->xmitpriv.free_xmitframe_cnt < (NR_XMITFRAME / pstapriv->asoc_list_cnt / 2))
|
||||
padapter->xmitpriv.free_xmitframe_cnt <
|
||||
(NR_XMITFRAME / pstapriv->asoc_list_cnt / 2))
|
||||
wakeup_sta_to_xmit(padapter, psta);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue