staging: rtl8188eu: add spaces around '+'
authorMichael Straube <straube.linux@gmail.com>
Sat, 14 Jul 2018 12:52:40 +0000 (14:52 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 16 Jul 2018 08:38:19 +0000 (10:38 +0200)
Add spaces around '+' to follow kernel coding style.

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_efuse.c

index 93d20bc758e7c8cc5bff61618c305356f028a099..b19aa26d17055b6455f436577e2e2dfcf7d3d0f4 100644 (file)
@@ -59,18 +59,18 @@ void efuse_power_switch(struct adapter *pAdapter, u8 write, u8 pwrstate)
 
                if (write) {
                        /*  Enable LDO 2.5V before read/write action */
-                       tempval = usb_read8(pAdapter, EFUSE_TEST+3);
+                       tempval = usb_read8(pAdapter, EFUSE_TEST + 3);
                        tempval &= 0x0F;
                        tempval |= (VOLTAGE_V25 << 4);
-                       usb_write8(pAdapter, EFUSE_TEST+3, (tempval | 0x80));
+                       usb_write8(pAdapter, EFUSE_TEST + 3, (tempval | 0x80));
                }
        } else {
                usb_write8(pAdapter, REG_EFUSE_ACCESS, EFUSE_ACCESS_OFF);
 
                if (write) {
                        /*  Disable LDO 2.5V after read/write action */
-                       tempval = usb_read8(pAdapter, EFUSE_TEST+3);
-                       usb_write8(pAdapter, EFUSE_TEST+3, (tempval & 0x7F));
+                       tempval = usb_read8(pAdapter, EFUSE_TEST + 3);
+                       usb_write8(pAdapter, EFUSE_TEST + 3, (tempval & 0x7F));
                }
        }
 }