Staging: rtl8723bs/core: fix braces coding style issues
Fix all the braces coding style issues found by checkpatch.pl in rtw_security.c. Signed-off-by: Brother Matthew De Angelis <matthew.v.deangelis@gmail.com> Link: https://lore.kernel.org/r/20201211222845.GA543167@a Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3989f5a5f8
commit
df94d3b2a9
@ -171,9 +171,8 @@ static void crc32_init(void)
|
||||
|
||||
for (i = 0; i < 256; ++i) {
|
||||
k = crc32_reverseBit((u8)i);
|
||||
for (c = ((u32)k) << 24, j = 8; j > 0; --j) {
|
||||
for (c = ((u32)k) << 24, j = 8; j > 0; --j)
|
||||
c = c & 0x80000000 ? (c << 1) ^ CRC32_POLY_BE : (c << 1);
|
||||
}
|
||||
p1 = (u8 *)&crc32_table[i];
|
||||
|
||||
p1[0] = crc32_reverseBit(p[3]);
|
||||
@ -195,9 +194,8 @@ static __le32 getcrc32(u8 *buf, sint len)
|
||||
|
||||
crc = 0xffffffff; /* preload shift register, per CRC-32 spec */
|
||||
|
||||
for (p = buf; len > 0; ++p, --len) {
|
||||
for (p = buf; len > 0; ++p, --len)
|
||||
crc = crc32_table[(crc ^ *p) & 0xff] ^ (crc >> 8);
|
||||
}
|
||||
return cpu_to_le32(~crc); /* transmit complement, per CRC-32 spec */
|
||||
}
|
||||
|
||||
@ -320,9 +318,8 @@ static u32 secmicgetuint32(u8 *p)
|
||||
s32 i;
|
||||
u32 res = 0;
|
||||
|
||||
for (i = 0; i < 4; i++) {
|
||||
for (i = 0; i < 4; i++)
|
||||
res |= ((u32)(*p++)) << (8*i);
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
@ -396,9 +393,8 @@ void rtw_secgetmic(struct mic_data *pmicdata, u8 *dst)
|
||||
rtw_secmicappendbyte(pmicdata, 0);
|
||||
rtw_secmicappendbyte(pmicdata, 0);
|
||||
/* and then zeroes until the length is a multiple of 4 */
|
||||
while (pmicdata->nBytesInM != 0) {
|
||||
while (pmicdata->nBytesInM != 0)
|
||||
rtw_secmicappendbyte(pmicdata, 0);
|
||||
}
|
||||
/* The appendByte function has already computed the result. */
|
||||
secmicputuint32(dst, pmicdata->L);
|
||||
secmicputuint32(dst+4, pmicdata->R);
|
||||
@ -918,9 +914,8 @@ static void xor_128(u8 *a, u8 *b, u8 *out)
|
||||
{
|
||||
sint i;
|
||||
|
||||
for (i = 0; i < 16; i++) {
|
||||
for (i = 0; i < 16; i++)
|
||||
out[i] = a[i] ^ b[i];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -928,9 +923,8 @@ static void xor_32(u8 *a, u8 *b, u8 *out)
|
||||
{
|
||||
sint i;
|
||||
|
||||
for (i = 0; i < 4; i++) {
|
||||
for (i = 0; i < 4; i++)
|
||||
out[i] = a[i] ^ b[i];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -969,9 +963,8 @@ static void byte_sub(u8 *in, u8 *out)
|
||||
{
|
||||
sint i;
|
||||
|
||||
for (i = 0; i < 16; i++) {
|
||||
for (i = 0; i < 16; i++)
|
||||
out[i] = sbox(in[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -1259,9 +1252,8 @@ static void bitwise_xor(u8 *ina, u8 *inb, u8 *out)
|
||||
{
|
||||
sint i;
|
||||
|
||||
for (i = 0; i < 16; i++) {
|
||||
for (i = 0; i < 16; i++)
|
||||
out[i] = ina[i] ^ inb[i];
|
||||
}
|
||||
}
|
||||
|
||||
static sint aes_cipher(u8 *key, uint hdrlen,
|
||||
|
Loading…
Reference in New Issue
Block a user