[PATCH 2/2] ASoC: SOF: imx: Fix error code in probe()

From: Dan Carpenter
Date: Mon Feb 17 2025 - 02:36:19 EST


This accidentally returns "common->clk_num" instead of "ret".

Fixes: 651e0ed391b1 ("ASoC: SOF: imx: introduce more common structures and functions")
Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx>
---
sound/soc/sof/imx/imx-common.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sound/soc/sof/imx/imx-common.c b/sound/soc/sof/imx/imx-common.c
index 5a385d140bc7..b8df8bbacad5 100644
--- a/sound/soc/sof/imx/imx-common.c
+++ b/sound/soc/sof/imx/imx-common.c
@@ -424,8 +424,7 @@ static int imx_probe(struct snd_sof_dev *sdev)

ret = devm_clk_bulk_get_all(sdev->dev, &common->clks);
if (ret < 0)
- return dev_err_probe(sdev->dev, common->clk_num,
- "failed to fetch clocks\n");
+ return dev_err_probe(sdev->dev, ret, "failed to fetch clocks\n");
common->clk_num = ret;

ret = clk_bulk_prepare_enable(common->clk_num, common->clks);
--
2.47.2