[PATCH 3/6] staging: rtl8723bs: Initialize variables at declaration in hal_com.c

Erick Karanja posted 6 patches 8 months, 1 week ago
There is a newer version of this series
[PATCH 3/6] staging: rtl8723bs: Initialize variables at declaration in hal_com.c
Posted by Erick Karanja 8 months, 1 week ago
Make the code more concise and readable by integrating the initialization
directly into the variable declaration in cases where the initialization
is simple and doesn't depend on other variables or complex expressions.

Signed-off-by: Erick Karanja <karanja99erick@gmail.com>
---
 drivers/staging/rtl8723bs/hal/hal_com.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/rtl8723bs/hal/hal_com.c b/drivers/staging/rtl8723bs/hal/hal_com.c
index 1213a91cffff..7f4dbd5c5d33 100644
--- a/drivers/staging/rtl8723bs/hal/hal_com.c
+++ b/drivers/staging/rtl8723bs/hal/hal_com.c
@@ -745,12 +745,10 @@ u8 GetHalDefVar(
 	switch (variable) {
 	case HAL_DEF_UNDERCORATEDSMOOTHEDPWDB:
 		{
-			struct mlme_priv *pmlmepriv;
-			struct sta_priv *pstapriv;
+			struct mlme_priv *pmlmepriv = &adapter->mlmepriv;
+			struct sta_priv *pstapriv = &adapter->stapriv;
 			struct sta_info *psta;
 
-			pmlmepriv = &adapter->mlmepriv;
-			pstapriv = &adapter->stapriv;
 			psta = rtw_get_stainfo(pstapriv, pmlmepriv->cur_network.network.mac_address);
 			if (psta)
 				*((int *)value) = psta->rssi_stat.UndecoratedSmoothedPWDB;
-- 
2.43.0