staging: rtl8723bs: hal: sdio_ops: fix spaces preferred around unary operator
authorHariprasad Kelam <hariprasad.kelam@gmail.com>
Tue, 11 Jun 2019 18:22:06 +0000 (23:52 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Jun 2019 09:50:08 +0000 (11:50 +0200)
CHECK: spaces preferred around that '+' (ctx:VxV)
CHECK: spaces preferred around that '+' (ctx:VxV)
CHECK: spaces preferred around that '+' (ctx:VxV)
CHECK: spaces preferred around that '+' (ctx:VxV)

Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/sdio_ops.c

index baeffbb..ebd2ab8 100644 (file)
@@ -214,7 +214,7 @@ static u32 sdio_read32(struct intf_hdl *intfhdl, u32 addr)
 
                ftaddr &= ~(u16)0x3;
                sd_read(intfhdl, ftaddr, 8, tmpbuf);
-               memcpy(&le_tmp, tmpbuf+shift, 4);
+               memcpy(&le_tmp, tmpbuf + shift, 4);
                val = le32_to_cpu(le_tmp);
 
                kfree(tmpbuf);
@@ -261,7 +261,7 @@ static s32 sdio_readN(struct intf_hdl *intfhdl, u32 addr, u32 cnt, u8 *buf)
 
                err = sd_read(intfhdl, ftaddr, n, tmpbuf);
                if (!err)
-                       memcpy(buf, tmpbuf+shift, cnt);
+                       memcpy(buf, tmpbuf + shift, cnt);
                kfree(tmpbuf);
        }
        return err;
@@ -366,7 +366,7 @@ static s32 sdio_writeN(struct intf_hdl *intfhdl, u32 addr, u32 cnt, u8 *buf)
                        kfree(tmpbuf);
                        return err;
                }
-               memcpy(tmpbuf+shift, buf, cnt);
+               memcpy(tmpbuf + shift, buf, cnt);
                err = sd_write(intfhdl, ftaddr, n, tmpbuf);
                kfree(tmpbuf);
        }
@@ -727,8 +727,8 @@ static s32 ReadInterrupt8723BSdio(struct adapter *adapter, u32 *phisr)
        hisr = 0;
        while (hisr_len != 0) {
                hisr_len--;
-               val8 = SdioLocalCmd52Read1Byte(adapter, SDIO_REG_HISR+hisr_len);
-               hisr |= (val8 << (8*hisr_len));
+               val8 = SdioLocalCmd52Read1Byte(adapter, SDIO_REG_HISR + hisr_len);
+               hisr |= (val8 << (8 * hisr_len));
        }
 
        *phisr = hisr;
@@ -952,7 +952,7 @@ static struct recv_buf *sd_recv_rxfifo(struct adapter *adapter, u32 size)
                        recvbuf->pskb->dev = adapter->pnetdev;
 
                        tmpaddr = (SIZE_PTR)recvbuf->pskb->data;
-                       alignment = tmpaddr & (RECVBUFF_ALIGN_SZ-1);
+                       alignment = tmpaddr & (RECVBUFF_ALIGN_SZ - 1);
                        skb_reserve(recvbuf->pskb, (RECVBUFF_ALIGN_SZ - alignment));
                }