mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 19:06:07 +07:00
wl18xx: add checks on wl18xx_top_reg_write() return value
Check return value from call to wl18xx_top_reg_write(), so in case of error jump to goto label out and return. Also, remove unnecessary value check before goto label out. Addresses-Coverity-ID: 1226938 Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
69551f5f37
commit
059c98599b
@ -793,9 +793,13 @@ static int wl18xx_set_clk(struct wl1271 *wl)
|
|||||||
ret = wl18xx_top_reg_write(wl, PLLSH_WCS_PLL_P_FACTOR_CFG_2,
|
ret = wl18xx_top_reg_write(wl, PLLSH_WCS_PLL_P_FACTOR_CFG_2,
|
||||||
(wl18xx_clk_table[clk_freq].p >> 16) &
|
(wl18xx_clk_table[clk_freq].p >> 16) &
|
||||||
PLLSH_WCS_PLL_P_FACTOR_CFG_2_MASK);
|
PLLSH_WCS_PLL_P_FACTOR_CFG_2_MASK);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
} else {
|
} else {
|
||||||
ret = wl18xx_top_reg_write(wl, PLLSH_WCS_PLL_SWALLOW_EN,
|
ret = wl18xx_top_reg_write(wl, PLLSH_WCS_PLL_SWALLOW_EN,
|
||||||
PLLSH_WCS_PLL_SWALLOW_EN_VAL2);
|
PLLSH_WCS_PLL_SWALLOW_EN_VAL2);
|
||||||
|
if (ret < 0)
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* choose WCS PLL */
|
/* choose WCS PLL */
|
||||||
@ -819,8 +823,6 @@ static int wl18xx_set_clk(struct wl1271 *wl)
|
|||||||
/* reset the swallowing logic */
|
/* reset the swallowing logic */
|
||||||
ret = wl18xx_top_reg_write(wl, PLLSH_COEX_PLL_SWALLOW_EN,
|
ret = wl18xx_top_reg_write(wl, PLLSH_COEX_PLL_SWALLOW_EN,
|
||||||
PLLSH_COEX_PLL_SWALLOW_EN_VAL2);
|
PLLSH_COEX_PLL_SWALLOW_EN_VAL2);
|
||||||
if (ret < 0)
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
out:
|
out:
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user