Commit 99dc94f3 authored by Greg Donald's avatar Greg Donald Committed by Greg Kroah-Hartman

drivers: staging: rtl8723au: Fix "space required before that '*'" errors

Fix checkpatch.pl "space required before that '*'" errors
Signed-off-by: default avatarGreg Donald <gdonald@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 41389e29
...@@ -282,7 +282,7 @@ int recvframe_chkmic(struct rtw_adapter *adapter, ...@@ -282,7 +282,7 @@ int recvframe_chkmic(struct rtw_adapter *adapter,
u32 datalen; u32 datalen;
u8 miccode[8]; u8 miccode[8];
u8 bmic_err = false, brpt_micerror = true; u8 bmic_err = false, brpt_micerror = true;
u8 *pframe, *payload,*pframemic; u8 *pframe, *payload, *pframemic;
u8 *mickey; u8 *mickey;
/* u8 *iv, rxdata_key_idx = 0; */ /* u8 *iv, rxdata_key_idx = 0; */
struct sta_info *stainfo; struct sta_info *stainfo;
......
...@@ -623,7 +623,7 @@ int rtw_tkip_encrypt23a(struct rtw_adapter *padapter, ...@@ -623,7 +623,7 @@ int rtw_tkip_encrypt23a(struct rtw_adapter *padapter,
struct arc4context mycontext; struct arc4context mycontext;
int curfragnum, length; int curfragnum, length;
u32 prwskeylen; u32 prwskeylen;
u8 *pframe, *payload,*iv,*prwskey; u8 *pframe, *payload, *iv, *prwskey;
union pn48 dot11txpn; union pn48 dot11txpn;
struct sta_info *stainfo; struct sta_info *stainfo;
struct pkt_attrib *pattrib = &pxmitframe->attrib; struct pkt_attrib *pattrib = &pxmitframe->attrib;
...@@ -723,7 +723,7 @@ int rtw_tkip_decrypt23a(struct rtw_adapter *padapter, ...@@ -723,7 +723,7 @@ int rtw_tkip_decrypt23a(struct rtw_adapter *padapter,
struct arc4context mycontext; struct arc4context mycontext;
int length; int length;
u32 prwskeylen; u32 prwskeylen;
u8 *pframe, *payload,*iv,*prwskey; u8 *pframe, *payload, *iv, *prwskey;
union pn48 dot11txpn; union pn48 dot11txpn;
struct sta_info *stainfo; struct sta_info *stainfo;
struct rx_pkt_attrib *prxattrib = &precvframe->attrib; struct rx_pkt_attrib *prxattrib = &precvframe->attrib;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment