aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/hal/rf_cfg.c
diff options
context:
space:
mode:
authorShreeya Patel <shreeya.patel23498@gmail.com>2020-03-25 21:31:42 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-03-25 19:39:24 +0100
commit69686debe6a18d9a52cd0041e1b80090db8092c1 (patch)
tree486a8504b5d7857bbaff99d4fbd5469b115cf784 /drivers/staging/rtl8188eu/hal/rf_cfg.c
parentStaging: kpc2000: kpc_dma: Use spaces around operators. (diff)
downloadlinux-dev-69686debe6a18d9a52cd0041e1b80090db8092c1.tar.xz
linux-dev-69686debe6a18d9a52cd0041e1b80090db8092c1.zip
Staging: rtl8188eu: hal: Add space around operators
Add space around operators for improving the code readability. Reported by checkpatch.pl git diff -w shows no difference. diff of the .o files before and after the changes shows no difference. Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com> Link: https://lore.kernel.org/r/20200325160142.3698-1-shreeya.patel23498@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/hal/rf_cfg.c')
-rw-r--r--drivers/staging/rtl8188eu/hal/rf_cfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/hal/rf_cfg.c b/drivers/staging/rtl8188eu/hal/rf_cfg.c
index 004e19301eae..0b20e62f9a68 100644
--- a/drivers/staging/rtl8188eu/hal/rf_cfg.c
+++ b/drivers/staging/rtl8188eu/hal/rf_cfg.c
@@ -143,7 +143,7 @@ static u32 Array_RadioA_1T_8188E[] = {
#define READ_NEXT_PAIR(v1, v2, i) \
do { \
i += 2; v1 = array[i]; \
- v2 = array[i+1]; \
+ v2 = array[i + 1]; \
} while (0)
#define RFREG_OFFSET_MASK 0xfffff
@@ -190,7 +190,7 @@ static bool rtl88e_phy_config_rf_with_headerfile(struct adapter *adapt)
for (i = 0; i < array_len; i += 2) {
u32 v1 = array[i];
- u32 v2 = array[i+1];
+ u32 v2 = array[i + 1];
if (v1 < 0xCDCDCDCD) {
rtl8188e_config_rf_reg(adapt, v1, v2);