summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8192e
diff options
context:
space:
mode:
authorthdecamargoj <thdecamargoj@gmail.com>2024-08-21 21:24:03 -0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-08-22 15:50:01 +0800
commita59907219baca0b4a79e36c03eda921da7bc658a (patch)
tree1f8fe03fc27e673bd500cfe007e39b48319c8a60 /drivers/staging/rtl8192e
parentcfb05827ef9318e8254bb6c331efae1c3663ebd6 (diff)
downloadlwn-a59907219baca0b4a79e36c03eda921da7bc658a.tar.gz
lwn-a59907219baca0b4a79e36c03eda921da7bc658a.zip
staging: rtl8192e: change logical continuation to previous line on file r8192E_dev.c
Change logical continuation to previous line to silence checkpatch warning: CHECK: Logical continuations should be on the previous line Signed-off-by: thdecamargoj <thdecamargoj@gmail.com> Link: https://lore.kernel.org/r/20240822002403.268452-1-thdecamargoj@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r--drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
index dcd8650a3404..39e7155fe690 100644
--- a/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
+++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_dev.c
@@ -1837,8 +1837,8 @@ bool rtl92e_is_rx_stuck(struct net_device *dev)
rx_chk_cnt++;
if (priv->undecorated_smoothed_pwdb >= (RATE_ADAPTIVE_TH_HIGH + 5)) {
rx_chk_cnt = 0;
- } else if ((priv->undecorated_smoothed_pwdb < (RATE_ADAPTIVE_TH_HIGH + 5))
- && (((priv->current_chnl_bw != HT_CHANNEL_WIDTH_20) &&
+ } else if ((priv->undecorated_smoothed_pwdb < (RATE_ADAPTIVE_TH_HIGH + 5)) &&
+ (((priv->current_chnl_bw != HT_CHANNEL_WIDTH_20) &&
(priv->undecorated_smoothed_pwdb >= RATE_ADAPTIVE_TH_LOW_40M))
|| ((priv->current_chnl_bw == HT_CHANNEL_WIDTH_20) &&
(priv->undecorated_smoothed_pwdb >= RATE_ADAPTIVE_TH_LOW_20M)))) {