Skip to content

Commit 10106d5

Browse files
cristiccbebarino
authored andcommitted
PCI: exynos: 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: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com> Link: https://lore.kernel.org/r/20241217-clk_bulk_ena_fix-v5-2-aafbbb245155@collabora.com Acked-by: Krzysztof Wilczyński <kwilczynski@kernel.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
1 parent dc924c2 commit 10106d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pci/controller/dwc/pci-exynos.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ static int exynos_pcie_probe(struct platform_device *pdev)
300300
if (IS_ERR(ep->elbi_base))
301301
return PTR_ERR(ep->elbi_base);
302302

303-
ret = devm_clk_bulk_get_all_enable(dev, &ep->clks);
303+
ret = devm_clk_bulk_get_all_enabled(dev, &ep->clks);
304304
if (ret < 0)
305305
return ret;
306306

0 commit comments

Comments
 (0)