Staging: rtl8723bs/core: fix space coding style issue

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>
This commit is contained in:
Qiang Ma
2021-03-15 09:56:59 +08:00
committed by Greg Kroah-Hartman
parent 754db907b2
commit 16253eca3b

View 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;
}