lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1fa527d26c2f9535bca96bc39d3d40d5@208suo.com>
Date:   Wed, 19 Jul 2023 17:43:02 +0800
From:   hanyu001@...suo.com
To:     pkshih@...ltek.com, kvalo@...nel.org
Cc:     linux-wireless@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] rtlwifi: rtl8192ee: phy Remove unnecessary spaces

Fix checkpatch warnings:

./drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:742: ERROR: space 
prohibited before that ',' (ctx:WxW)
./drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:766: ERROR: space 
prohibited before that ',' (ctx:WxW)
./drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:766: ERROR: space 
prohibited before that ',' (ctx:WxW)
./drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:771: ERROR: space 
prohibited before that ',' (ctx:WxW)
./drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:771: ERROR: space 
prohibited before that ',' (ctx:WxW)
./drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:927: ERROR: space 
prohibited before that ',' (ctx:WxW)
./drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:974: ERROR: space 
prohibited before that ',' (ctx:WxW)

Signed-off-by: 	Yu Han <hanyu001@...suo.com>
---
  drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c | 10 +++++-----
  1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c 
b/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c
index cc0bcaf..d4b6131 100644
--- a/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c
+++ b/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c
@@ -739,7 +739,7 @@ static bool phy_config_bb_with_hdr_file(struct 
ieee80211_hw *hw,
                  if (i >= len - 2)
                      break;

-                if (!_check_condition(hw , array[i])) {
+                if (!_check_condition(hw, array[i])) {
                      /*Discard the following pairs*/
                      READ_NEXT_PAIR(v1, v2, i);
                      while (v2 != 0xDEAD &&
@@ -763,12 +763,12 @@ static bool phy_config_bb_with_hdr_file(struct 
ieee80211_hw *hw,
                                    MASKDWORD,
                                    array[i + 1]);
                          udelay(1);
-                        READ_NEXT_PAIR(v1 , v2 , i);
+                        READ_NEXT_PAIR(v1, v2, i);
                      }

                      while (v2 != 0xDEAD &&
                             i < len - 2) {
-                        READ_NEXT_PAIR(v1 , v2 , i);
+                        READ_NEXT_PAIR(v1, v2, i);
                      }
                  }
              }
@@ -924,7 +924,7 @@ bool rtl92ee_phy_config_rf_with_headerfile(struct 
ieee80211_hw  *hw,
                  if (i >= len - 2)
                      break;

-                if (!_check_condition(hw , array[i])) {
+                if (!_check_condition(hw, array[i])) {
                      /*Discard the following pairs*/
                      READ_NEXT_RF_PAIR(v1, v2, i);
                      while (v2 != 0xDEAD &&
@@ -971,7 +971,7 @@ bool rtl92ee_phy_config_rf_with_headerfile(struct 
ieee80211_hw  *hw,
                  if (i >= len - 2)
                      break;

-                if (!_check_condition(hw , array[i])) {
+                if (!_check_condition(hw, array[i])) {
                      /*Discard the following pairs*/
                      READ_NEXT_RF_PAIR(v1, v2, i);
                      while (v2 != 0xDEAD &&

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ