]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
staging: rtl8712: Add spaces around '|'
authorAmitoj Kaur Chawla <amitoj1606@gmail.com>
Mon, 5 Oct 2015 19:14:42 +0000 (00:44 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Oct 2015 09:25:32 +0000 (10:25 +0100)
Add space around operator '|'. Problem found using
checkpatch.pl
CHECK: spaces preferred around that '|' (ctx:VxV)

Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/hal_init.c

index 601d8c63e0f0e20f45c8706d1afdd52f3640538d..425c2b1438e549d5c163c097ccc49e68f1ff0a8e 100644 (file)
@@ -246,15 +246,15 @@ static u8 rtl8712_dl_fw(struct _adapter *padapter)
 
                /* 3.Enable CPU */
                tmp8 = r8712_read8(padapter, SYS_CLKR);
-               r8712_write8(padapter, SYS_CLKR, tmp8|BIT(2));
+               r8712_write8(padapter, SYS_CLKR, tmp8 | BIT(2));
                tmp8_a = r8712_read8(padapter, SYS_CLKR);
-               if (tmp8_a != (tmp8|BIT(2)))
+               if (tmp8_a != (tmp8 | BIT(2)))
                        goto exit_fail;
 
                tmp8 = r8712_read8(padapter, SYS_FUNC_EN + 1);
-               r8712_write8(padapter, SYS_FUNC_EN + 1, tmp8|BIT(2));
+               r8712_write8(padapter, SYS_FUNC_EN + 1, tmp8 | BIT(2));
                tmp8_a = r8712_read8(padapter, SYS_FUNC_EN + 1);
-               if (tmp8_a != (tmp8|BIT(2)))
+               if (tmp8_a != (tmp8 | BIT(2)))
                        goto exit_fail;
 
                r8712_read32(padapter, TCR);
@@ -335,7 +335,7 @@ uint rtl8712_hal_init(struct _adapter *padapter)
        netdev_info(padapter->pnetdev, "2 RCR=0x%x\n",
                    r8712_read32(padapter, RCR));
        val32 = r8712_read32(padapter, RCR);
-       r8712_write32(padapter, RCR, (val32|BIT(25))); /* Append PHY status */
+       r8712_write32(padapter, RCR, (val32 | BIT(25))); /* Append PHY status */
        val32 = 0;
        val32 = r8712_read32(padapter, 0x10250040);
        r8712_write32(padapter,  0x10250040, (val32&0x00FFFFFF));