staging: rtl8188eu: spaces preferred around that + inserted
authorIvan Safonov <insafonov@gmail.com>
Sat, 10 Oct 2015 12:23:50 +0000 (19:23 +0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 13 Oct 2015 03:48:09 +0000 (20:48 -0700)
This patch inserts spaces preferred around that '+' found by checkpatch.

Signed-off-by: Ivan Safonov <insafonov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/bb_cfg.c

index 88c3ad7a1cc7e54b6d6ad9d8f09ee4152fd07088..4eb982bdbfc099c6627f78f5e463b2ccf2589b0e 100644 (file)
@@ -163,7 +163,7 @@ static bool set_baseband_agc_config(struct adapter *adapt)
 
        for (i = 0; i < arraylen; i += 2) {
                u32 v1 = array[i];
-               u32 v2 = array[i+1];
+               u32 v2 = array[i + 1];
 
                if (v1 < 0xCDCDCDCD) {
                        phy_set_bb_reg(adapt, v1, bMaskDWord, v2);
@@ -398,7 +398,7 @@ static bool set_baseband_phy_config(struct adapter *adapt)
 
        for (i = 0; i < arraylen; i += 2) {
                u32 v1 = array[i];
-               u32 v2 = array[i+1];
+               u32 v2 = array[i + 1];
 
                if (v1 < 0xCDCDCDCD)
                        rtl_bb_delay(adapt, v1, v2);
@@ -580,8 +580,8 @@ static bool config_bb_with_pgheader(struct adapter *adapt)
 
        for (i = 0; i < arraylen; i += 3) {
                u32 v1 = array[i];
-               u32 v2 = array[i+1];
-               u32 v3 = array[i+2];
+               u32 v2 = array[i + 1];
+               u32 v3 = array[i + 2];
 
                if (v1 < 0xCDCDCDCD)
                        rtl_addr_delay(adapt, v1, v2, v3);
This page took 0.025487 seconds and 5 git commands to generate.