[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230524040051.235250-1-davidbtadokoro@usp.br>
Date: Wed, 24 May 2023 01:00:51 -0300
From: David Tadokoro <davidbtadokoro@....br>
To: gregkh@...uxfoundation.org
Cc: David Tadokoro <davidbtadokoro@....br>,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: [PATCH] staging: rtl8192e: Fix BRACES warning
Fix checkpatch warning "braces {} are not necessary for single statement
blocks".
Signed-off-by: David Tadokoro <davidbtadokoro@....br>
---
drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
index 4b0ebe96302e..ea993cbb7bf7 100644
--- a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
+++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
@@ -1099,9 +1099,8 @@ static bool _rtl92e_set_rf_power_state(struct net_device *dev,
break;
}
- if (bResult) {
+ if (bResult)
priv->rtllib->rf_power_state = rf_power_state;
- }
priv->set_rf_pwr_state_in_progress = false;
return bResult;
--
2.40.1
Powered by blists - more mailing lists