Cleans up warnings of "line over 100 characters" but avoiding
more than 90 characters in file rtw_ap.c

Signed-off-by: Beatriz Martins de Carvalho <martinsdecarvalhobeat...@gmail.com>
---
Changes in v2:
        - revert some cleans up warning previously applied wrong

This patch came from patch series that could find in:
https://lore.kernel.org/linux-staging/cover.1617641790.git.martinsdecarvalhobeat...@gmail.com
---
 drivers/staging/rtl8723bs/core/rtw_ap.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/rtl8723bs/core/rtw_ap.c 
b/drivers/staging/rtl8723bs/core/rtw_ap.c
index bee4f83a6db7..d65832b06444 100644
--- a/drivers/staging/rtl8723bs/core/rtw_ap.c
+++ b/drivers/staging/rtl8723bs/core/rtw_ap.c
@@ -278,7 +278,8 @@ void expire_timeout_chk(struct adapter *padapter)
 
                        if (psta->state & WIFI_SLEEP_STATE) {
                                if (!(psta->state & WIFI_STA_ALIVE_CHK_STATE)) {
-                                       /* to check if alive by another methods 
if station is at ps mode. */
+                                       /* to check if alive by another methods 
*/
+                                       /* if station is at ps mode. */
                                        psta->expire_to = pstapriv->expire_to;
                                        psta->state |= WIFI_STA_ALIVE_CHK_STATE;
 
@@ -309,7 +310,8 @@ void expire_timeout_chk(struct adapter *padapter)
                        );
                        updated = ap_free_sta(padapter, psta, false, 
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
@@ -375,7 +377,8 @@ void expire_timeout_chk(struct adapter *padapter)
                        if (list_empty(&psta->asoc_list) == false) {
                                list_del_init(&psta->asoc_list);
                                pstapriv->asoc_list_cnt--;
-                               updated = ap_free_sta(padapter, psta, false, 
WLAN_REASON_DEAUTH_LEAVING);
+                               updated = ap_free_sta(padapter, psta, false,
+                                                     
WLAN_REASON_DEAUTH_LEAVING);
                        }
                        spin_unlock_bh(&pstapriv->asoc_list_lock);
                }
@@ -1117,7 +1120,8 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 
*pbuf,  int len)
 
                                *(p + 8) |= BIT(7);/* QoS Info, support U-APSD 
*/
 
-                               /* disable all ACM bits since the WMM admission 
control is not supported */
+                               /* disable all ACM bits since the WMM admission 
*/
+                               /* control is not supported */
                                *(p + 10) &= ~BIT(4); /* BE */
                                *(p + 14) &= ~BIT(4); /* BK */
                                *(p + 18) &= ~BIT(4); /* VI */
-- 
2.25.1

Reply via email to