staging: rtl8192e: Added spaces around operators in rtl_cam.c/rtl_eeprom.c
authorDanijel Korent <danijel.korent@gmail.com>
Sat, 15 Oct 2022 16:50:23 +0000 (18:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 20 Oct 2022 15:42:02 +0000 (17:42 +0200)
Fixed "spaces preferred around operator" type of problems reported by
checkpatch

Signed-off-by: Danijel Korent <danijel.korent@gmail.com>
Link: https://lore.kernel.org/r/20221015165023.487200-1-danijel.korent@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl8192e/rtl_cam.c
drivers/staging/rtl8192e/rtl8192e/rtl_eeprom.c

index 8c3ce6c..9d8d483 100644 (file)
@@ -17,7 +17,7 @@ void rtl92e_cam_reset(struct net_device *dev)
 {
        u32 ulcommand = 0;
 
-       ulcommand |= BIT31|BIT30;
+       ulcommand |= BIT31 | BIT30;
        rtl92e_writel(dev, RWCAM, ulcommand);
 }
 
@@ -40,7 +40,6 @@ void rtl92e_enable_hw_security_config(struct net_device *dev)
                SECR_value |= SCR_TxUseDK;
        }
 
-
        ieee->hwsec_active = 1;
        if ((ieee->pHTInfo->iot_action & HT_IOT_ACT_PURE_N_MODE) || !hwwep) {
                ieee->hwsec_active = 0;
@@ -98,33 +97,33 @@ void rtl92e_set_key(struct net_device *dev, u8 EntryNo, u8 KeyIndex,
        }
 
        if (DefaultKey)
-               usConfig |= BIT15 | (KeyType<<2);
+               usConfig |= BIT15 | (KeyType << 2);
        else
-               usConfig |= BIT15 | (KeyType<<2) | KeyIndex;
+               usConfig |= BIT15 | (KeyType << 2) | KeyIndex;
 
 
        for (i = 0; i < CAM_CONTENT_COUNT; i++) {
                TargetCommand  = i + CAM_CONTENT_COUNT * EntryNo;
-               TargetCommand |= BIT31|BIT16;
+               TargetCommand |= BIT31 | BIT16;
 
                if (i == 0) {
-                       TargetContent = (u32)(*(MacAddr+0)) << 16 |
-                               (u32)(*(MacAddr+1)) << 24 |
+                       TargetContent = (u32)(*(MacAddr + 0)) << 16 |
+                               (u32)(*(MacAddr + 1)) << 24 |
                                (u32)usConfig;
 
                        rtl92e_writel(dev, WCAMI, TargetContent);
                        rtl92e_writel(dev, RWCAM, TargetCommand);
                } else if (i == 1) {
-                       TargetContent = (u32)(*(MacAddr+2)) |
-                               (u32)(*(MacAddr+3)) <<  8 |
-                               (u32)(*(MacAddr+4)) << 16 |
-                               (u32)(*(MacAddr+5)) << 24;
+                       TargetContent = (u32)(*(MacAddr + 2)) |
+                               (u32)(*(MacAddr + 3)) <<  8 |
+                               (u32)(*(MacAddr + 4)) << 16 |
+                               (u32)(*(MacAddr + 5)) << 24;
                        rtl92e_writel(dev, WCAMI, TargetContent);
                        rtl92e_writel(dev, RWCAM, TargetCommand);
                } else {
                        if (KeyContent != NULL) {
                                rtl92e_writel(dev, WCAMI,
-                                             (u32)(*(KeyContent+i-2)));
+                                             (u32)(*(KeyContent + i - 2)));
                                rtl92e_writel(dev, RWCAM, TargetCommand);
                                udelay(100);
                        }
index 59532ed..db57c65 100644 (file)
@@ -79,6 +79,6 @@ u32 rtl92e_eeprom_read(struct net_device *dev, u32 addr)
                ret = _rtl92e_eeprom_xfer(dev, (addr & 0x3F) | (0x6 << 6), 9);
 
        rtl92e_writeb(dev, EPROM_CMD,
-                     (EPROM_CMD_NORMAL<<EPROM_CMD_OPERATING_MODE_SHIFT));
+                     (EPROM_CMD_NORMAL << EPROM_CMD_OPERATING_MODE_SHIFT));
        return ret;
 }