[PATCH 3/6] staging: rtl8723bs: Initialize variables at declaration in hal_com.c
Erick Karanja <[email protected]> Thu, 10 Apr 2025 16:06:08 +0300
| Newsgroups | dev.linux.lists.outreachy,dev.linux.lists.linux-staging,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <4e40575a308a7fc4ee0d25923097fc915a2ee849.1744285781.git.karanja99erick@gmail.com> |
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 <[email protected]> --- 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