From: Qiang Ma Date: Mon, 15 Mar 2021 01:56:59 +0000 (+0800) Subject: Staging: rtl8723bs/core: fix space coding style issue X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=16253eca3bde9703ad49478a91b568002a6e1fda;p=linux.git Staging: rtl8723bs/core: fix space coding style issue Add one space around (on each side of) '*' binary operators. Signed-off-by: Qiang Ma Link: https://lore.kernel.org/r/20210315015659.2402-1-maqianga@uniontech.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723bs/core/rtw_security.c b/drivers/staging/rtl8723bs/core/rtw_security.c index 4550113a55a2d..86daf5cdbb488 100644 --- a/drivers/staging/rtl8723bs/core/rtw_security.c +++ b/drivers/staging/rtl8723bs/core/rtw_security.c @@ -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; }