Commit f5d8bde7 authored by M. Vefa Bicakci's avatar M. Vefa Bicakci Committed by Greg Kroah-Hartman

staging: rtl8723au: Reformat whitespace to increase readability

Adjust the whitespace in the signature, local variable declaration and
initialization parts of a number of functions to increase readability
in rtl8723au's rtw_security.c.
Signed-off-by: default avatarM. Vefa Bicakci <m.v.b@runbox.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8f47c28b
...@@ -55,7 +55,8 @@ static void arcfour_init(struct arc4context *parc4ctx, u8 *key, u32 key_len) ...@@ -55,7 +55,8 @@ static void arcfour_init(struct arc4context *parc4ctx, u8 *key, u32 key_len)
} }
} }
static u32 arcfour_byte( struct arc4context *parc4ctx)
static u32 arcfour_byte(struct arc4context *parc4ctx)
{ {
u32 x; u32 x;
u32 y; u32 y;
...@@ -75,16 +76,13 @@ static u32 arcfour_byte( struct arc4context *parc4ctx) ...@@ -75,16 +76,13 @@ static u32 arcfour_byte( struct arc4context *parc4ctx)
return state[(sx + sy) & 0xff]; return state[(sx + sy) & 0xff];
} }
static void arcfour_encrypt( struct arc4context *parc4ctx, static void arcfour_encrypt(struct arc4context *parc4ctx, u8 *dest,
u8 *dest, u8 *src, u32 len)
u8 *src,
u32 len)
{ {
u32 i; u32 i;
for (i = 0; i < len; i++) for (i = 0; i < len; i++)
dest[i] = src[i] ^ (unsigned char)arcfour_byte(parc4ctx); dest[i] = src[i] ^ (unsigned char)arcfour_byte(parc4ctx);
} }
static int bcrc32initialized; static int bcrc32initialized;
...@@ -1353,8 +1351,7 @@ int rtw_aes_encrypt23a(struct rtw_adapter *padapter, ...@@ -1353,8 +1351,7 @@ int rtw_aes_encrypt23a(struct rtw_adapter *padapter,
return res; return res;
} }
static int aes_decipher(u8 *key, uint hdrlen, static int aes_decipher(u8 *key, uint hdrlen, u8 *pframe, uint plen)
u8 *pframe, uint plen)
{ {
static u8 message[MAX_MSG_SIZE]; static u8 message[MAX_MSG_SIZE];
uint qc_exists, a4_exists, i, j, payload_remainder, uint qc_exists, a4_exists, i, j, payload_remainder,
......
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