staging: rtl8712: Remove spaces after a cast
authorZhansaya Bagdauletkyzy <zhansayabagdaulet@gmail.com>
Tue, 6 Apr 2021 08:45:27 +0000 (14:45 +0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 6 Apr 2021 12:15:40 +0000 (14:15 +0200)
Remove extra spaces after a cast to conform with Linux kernel coding
style.
Reported by checkpatch.

Signed-off-by: Zhansaya Bagdauletkyzy <zhansayabagdaulet@gmail.com>
Link: https://lore.kernel.org/r/f8932bfa35eb7480b69a9c8296bb10fac5a28540.1617697237.git.zhansayabagdaulet@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/rtl871x_security.c

index 5000c87..b0cc3c9 100644 (file)
@@ -259,7 +259,7 @@ static void secmicputuint32(u8 *p, u32 val)
        long i;
 
        for (i = 0; i < 4; i++) {
-               *p++ = (u8) (val & 0xff);
+               *p++ = (u8)(val & 0xff);
                val >>= 8;
        }
 }
@@ -907,8 +907,8 @@ static void construct_mic_iv(u8 *mic_iv, sint qc_exists, sint a4_exists,
                mic_iv[i] = mpdu[i + 8];
        for (i = 8; i < 14; i++)
                mic_iv[i] = pn_vector[13 - i]; /* mic_iv[8:13] = PN[5:0] */
-       mic_iv[14] = (unsigned char) (payload_length / 256);
-       mic_iv[15] = (unsigned char) (payload_length % 256);
+       mic_iv[14] = (unsigned char)(payload_length / 256);
+       mic_iv[15] = (unsigned char)(payload_length % 256);
 }
 
 /************************************************/
@@ -995,8 +995,8 @@ static void construct_ctr_preload(u8 *ctr_preload,
                ctr_preload[i] = mpdu[i + 8];
        for (i = 8; i < 14; i++)
                ctr_preload[i] = pn_vector[13 - i];
-       ctr_preload[14] = (unsigned char) (c / 256); /* Ctr */
-       ctr_preload[15] = (unsigned char) (c % 256);
+       ctr_preload[14] = (unsigned char)(c / 256); /* Ctr */
+       ctr_preload[15] = (unsigned char)(c % 256);
 }
 
 /************************************/