staging:rtl8188eu:core Fixes Alignment should match opening brace
Fixed style issue: Alignment should match open brace Signed-off-by: Scott Matheina <scott@matheina.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
015ae42838
commit
945cd47260
|
@ -94,9 +94,8 @@ static void update_BCNTIM(struct adapter *padapter)
|
|||
offset += pnetwork_mlmeext->Ssid.SsidLength + 2;
|
||||
|
||||
/* get supported rates len */
|
||||
p = rtw_get_ie(pie + _BEACON_IE_OFFSET_,
|
||||
_SUPPORTEDRATES_IE_, &tmp_len,
|
||||
(pnetwork_mlmeext->IELength -
|
||||
p = rtw_get_ie(pie + _BEACON_IE_OFFSET_, _SUPPORTEDRATES_IE_,
|
||||
&tmp_len, (pnetwork_mlmeext->IELength -
|
||||
_BEACON_IE_OFFSET_));
|
||||
if (p)
|
||||
offset += tmp_len+2;
|
||||
|
@ -116,13 +115,12 @@ static void update_BCNTIM(struct adapter *padapter)
|
|||
if (remainder_ielen > 0) {
|
||||
pbackup_remainder_ie = rtw_malloc(remainder_ielen);
|
||||
if (pbackup_remainder_ie && premainder_ie)
|
||||
memcpy(pbackup_remainder_ie,
|
||||
premainder_ie, remainder_ielen);
|
||||
memcpy(pbackup_remainder_ie, premainder_ie,
|
||||
remainder_ielen);
|
||||
}
|
||||
*dst_ie++ = _TIM_IE_;
|
||||
|
||||
if ((pstapriv->tim_bitmap&0xff00) &&
|
||||
(pstapriv->tim_bitmap&0x00fc))
|
||||
if ((pstapriv->tim_bitmap&0xff00) && (pstapriv->tim_bitmap&0x00fc))
|
||||
tim_ielen = 5;
|
||||
else
|
||||
tim_ielen = 4;
|
||||
|
@ -201,8 +199,8 @@ void rtw_add_bcn_ie(struct adapter *padapter, struct wlan_bssid_ex *pnetwork,
|
|||
if (remainder_ielen > 0) {
|
||||
pbackup_remainder_ie = rtw_malloc(remainder_ielen);
|
||||
if (pbackup_remainder_ie && premainder_ie)
|
||||
memcpy(pbackup_remainder_ie,
|
||||
premainder_ie, remainder_ielen);
|
||||
memcpy(pbackup_remainder_ie, premainder_ie,
|
||||
remainder_ielen);
|
||||
}
|
||||
|
||||
*dst_ie++ = index;
|
||||
|
@ -247,8 +245,8 @@ void rtw_remove_bcn_ie(struct adapter *padapter, struct wlan_bssid_ex *pnetwork,
|
|||
if (remainder_ielen > 0) {
|
||||
pbackup_remainder_ie = rtw_malloc(remainder_ielen);
|
||||
if (pbackup_remainder_ie && premainder_ie)
|
||||
memcpy(pbackup_remainder_ie,
|
||||
premainder_ie, remainder_ielen);
|
||||
memcpy(pbackup_remainder_ie, premainder_ie,
|
||||
remainder_ielen);
|
||||
}
|
||||
|
||||
/* copy remainder IE */
|
||||
|
@ -361,8 +359,8 @@ void expire_timeout_chk(struct adapter *padapter)
|
|||
* for this station
|
||||
*/
|
||||
pstapriv->tim_bitmap |= BIT(psta->aid);
|
||||
update_beacon(padapter, _TIM_IE_,
|
||||
NULL, false);
|
||||
update_beacon(padapter, _TIM_IE_, NULL,
|
||||
false);
|
||||
|
||||
if (!pmlmeext->active_keep_alive_check)
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue