diff options
| author | Cristian Ciocaltea <[email protected]> | 2024-12-17 21:41:52 +0000 |
|---|---|---|
| committer | Stephen Boyd <[email protected]> | 2024-12-23 20:53:52 +0000 |
| commit | 10106d5c1f9cee1a514fc29d711b55601d7241f2 (patch) | |
| tree | c6413559344ea28aab807f1da12e74653f82fc98 /drivers/pci/controller/dwc/pci-exynos.c | |
| parent | soc: mediatek: pwrap: Switch to devm_clk_bulk_get_all_enabled() (diff) | |
| download | kernel-10106d5c1f9cee1a514fc29d711b55601d7241f2.tar.gz kernel-10106d5c1f9cee1a514fc29d711b55601d7241f2.zip | |
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 <[email protected]>
Signed-off-by: Cristian Ciocaltea <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Acked-by: Krzysztof WilczyĆski <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
Diffstat (limited to 'drivers/pci/controller/dwc/pci-exynos.c')
| -rw-r--r-- | drivers/pci/controller/dwc/pci-exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/dwc/pci-exynos.c b/drivers/pci/controller/dwc/pci-exynos.c index 6a830166d37f..ace736b025b1 100644 --- a/drivers/pci/controller/dwc/pci-exynos.c +++ b/drivers/pci/controller/dwc/pci-exynos.c @@ -300,7 +300,7 @@ static int exynos_pcie_probe(struct platform_device *pdev) if (IS_ERR(ep->elbi_base)) return PTR_ERR(ep->elbi_base); - ret = devm_clk_bulk_get_all_enable(dev, &ep->clks); + ret = devm_clk_bulk_get_all_enabled(dev, &ep->clks); if (ret < 0) return ret; |
