Skip to content
Snippets Groups Projects
Commit dc924c24 authored by Cristian Ciocaltea's avatar Cristian Ciocaltea Committed by Stephen Boyd
Browse files

soc: mediatek: pwrap: Switch to devm_clk_bulk_get_all_enabled()


The helper devm_clk_bulk_get_all_enable() missed to return the number of
clocks stored in the clk_bulk_data table referenced by the clks
argument and, therefore, will be dropped.

Use the newly introduced devm_clk_bulk_get_all_enabled() variant
instead, which is consistent with devm_clk_bulk_get_all() in terms of
the returned value:

 > 0 if one or more clocks have been stored
 = 0 if there are no clocks
 < 0 if an error occurred

Reviewed-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Reviewed-by: default avatarManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Signed-off-by: default avatarCristian Ciocaltea <cristian.ciocaltea@collabora.com>
Link: https://lore.kernel.org/r/20241217-clk_bulk_ena_fix-v5-1-aafbbb245155@collabora.com


Acked-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 7c4b497f
No related branches found
No related tags found
No related merge requests found
......@@ -2518,8 +2518,8 @@ static int pwrap_probe(struct platform_device *pdev)
}
}
ret = devm_clk_bulk_get_all_enable(wrp->dev, &clk);
if (ret)
ret = devm_clk_bulk_get_all_enabled(wrp->dev, &clk);
if (ret < 0)
return dev_err_probe(wrp->dev, ret,
"failed to get clocks\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment