Staging: rtl8723bs/core: fix space coding style issue
authorQiang Ma <maqianga@uniontech.com>
Mon, 15 Mar 2021 01:56:59 +0000 (09:56 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 16 Mar 2021 11:36:26 +0000 (12:36 +0100)
Add one space around (on each side of) '*' binary operators.

Signed-off-by: Qiang Ma <maqianga@uniontech.com>
Link: https://lore.kernel.org/r/20210315015659.2402-1-maqianga@uniontech.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_security.c

index 4550113a55a2d9111c80a6c1b07e194c2aa6380c..86daf5cdbb48830bcf70af8ca36952c81673354b 100644 (file)
@@ -319,7 +319,7 @@ static u32 secmicgetuint32(u8 *p)
        u32 res = 0;
 
        for (i = 0; i < 4; i++)
-               res |= ((u32)(*p++)) << (8*i);
+               res |= ((u32)(*p++)) << (8 * i);
 
        return res;
 }