diff options
| author | Qiang Ma <[email protected]> | 2021-03-15 11:08:13 +0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2021-03-16 12:36:30 +0100 |
| commit | f1bb8a1af024bf9d01015d134580c6dd9bc319bb (patch) | |
| tree | bc9212b3cf1a375d32f5d44a81e1d3f38e2b5523 | |
| parent | 16253eca3bde9703ad49478a91b568002a6e1fda (diff) | |
staging: rtl8723bs: add spaces between operators
Add spaces between operators for a better readability
in function 'rtw_secgetmic'.
Signed-off-by: Qiang Ma <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/rtl8723bs/core/rtw_security.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_security.c b/drivers/staging/rtl8723bs/core/rtw_security.c index 86daf5cdbb48..69f75126fee4 100644 --- a/drivers/staging/rtl8723bs/core/rtw_security.c +++ b/drivers/staging/rtl8723bs/core/rtw_security.c @@ -397,7 +397,7 @@ void rtw_secgetmic(struct mic_data *pmicdata, u8 *dst) rtw_secmicappendbyte(pmicdata, 0); /* The appendByte function has already computed the result. */ secmicputuint32(dst, pmicdata->L); - secmicputuint32(dst+4, pmicdata->R); + secmicputuint32(dst + 4, pmicdata->R); /* Reset to the empty message. */ secmicclear(pmicdata); } |