drivers: staging: rtl8723au: Fix '"(foo*)" should be "(foo *)"' errors
Fix checkpatch.pl '"(foo*)" should be "(foo *)"' errors Signed-off-by: Greg Donald <gdonald@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c1f870c68a
commit
7e6646d50a
@ -463,7 +463,8 @@ static void update_bmc_sta(struct rtw_adapter *padapter)
|
||||
|
||||
psta->ieee8021x_blocked = 0;
|
||||
|
||||
memset((void*)&psta->sta_stats, 0, sizeof(struct stainfo_stats));
|
||||
memset((void *)&psta->sta_stats, 0,
|
||||
sizeof(struct stainfo_stats));
|
||||
|
||||
/* prepare for add_RATid23a */
|
||||
supportRateNum = rtw_get_rateset_len23a((u8*)&pcur_network->SupportedRates);
|
||||
@ -1674,7 +1675,8 @@ u8 ap_free_sta23a(struct rtw_adapter *padapter, struct sta_info *psta, bool acti
|
||||
|
||||
/* clear cam entry / key */
|
||||
/* clear_cam_entry23a(padapter, (psta->mac_id + 3)); */
|
||||
rtw_clearstakey_cmd23a(padapter, (u8*)psta, (u8)(psta->mac_id + 3), true);
|
||||
rtw_clearstakey_cmd23a(padapter, (u8 *)psta, (u8)(psta->mac_id + 3),
|
||||
true);
|
||||
|
||||
spin_lock_bh(&psta->lock);
|
||||
psta->state &= ~_FW_LINKED;
|
||||
|
Loading…
Reference in New Issue
Block a user