Commit 66c1c64e authored by Jignesh Patel's avatar Jignesh Patel Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: Line over 100 characters



Break lines into multiple lines to respect 100 character width limit.
Reported by checkpatch.pl

Signed-off-by: default avatarJignesh Patel <jigs0101@gmail.com>
Link: https://lore.kernel.org/r/20210723094524.8811-1-jigs0101@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0104c061
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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);
		}
	}