staging: rtl8723bs: core: reorganize characters so the lines are under 100 ch
authorBeatriz Martins de Carvalho <martinsdecarvalhobeatriz@gmail.com>
Tue, 6 Apr 2021 15:58:15 +0000 (16:58 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 7 Apr 2021 08:17:06 +0000 (10:17 +0200)
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 <martinsdecarvalhobeatriz@gmail.com>
Link: https://lore.kernel.org/r/20210406155815.90271-1-martinsdecarvalhobeatriz@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_ap.c

index bee4f83a6db714c5364853a463c1acc28279505c..d65832b064446a4047aa0e6aeb07344487040a21 100644 (file)
@@ -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 */