mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 09:49:58 -04:00
firmware: qcom_scm: Always return devm_clk_get_optional errors
If devm_clk_get_optional throws an error, something is really wrong. It may be a probe deferral, or it may be a problem with the clock provider. Regardless of what it may be, it should definitely not be ignored. Stop doing that. Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org> Link: https://lore.kernel.org/r/20230623-topic-scm_cleanup-v2-2-9db8c583138d@linaro.org Signed-off-by: Bjorn Andersson <andersson@kernel.org>
This commit is contained in:
committed by
Bjorn Andersson
parent
5130464a14
commit
ae76fd3f55
@@ -1419,22 +1419,16 @@ static int qcom_scm_probe(struct platform_device *pdev)
|
||||
"failed to acquire interconnect path\n");
|
||||
|
||||
scm->core_clk = devm_clk_get_optional(&pdev->dev, "core");
|
||||
if (IS_ERR(scm->core_clk)) {
|
||||
if (PTR_ERR(scm->core_clk) == -EPROBE_DEFER)
|
||||
return PTR_ERR(scm->core_clk);
|
||||
}
|
||||
if (IS_ERR(scm->core_clk))
|
||||
return PTR_ERR(scm->core_clk);
|
||||
|
||||
scm->iface_clk = devm_clk_get_optional(&pdev->dev, "iface");
|
||||
if (IS_ERR(scm->iface_clk)) {
|
||||
if (PTR_ERR(scm->iface_clk) == -EPROBE_DEFER)
|
||||
return PTR_ERR(scm->iface_clk);
|
||||
}
|
||||
if (IS_ERR(scm->iface_clk))
|
||||
return PTR_ERR(scm->iface_clk);
|
||||
|
||||
scm->bus_clk = devm_clk_get_optional(&pdev->dev, "bus");
|
||||
if (IS_ERR(scm->bus_clk)) {
|
||||
if (PTR_ERR(scm->bus_clk) == -EPROBE_DEFER)
|
||||
return PTR_ERR(scm->bus_clk);
|
||||
}
|
||||
if (IS_ERR(scm->bus_clk))
|
||||
return PTR_ERR(scm->bus_clk);
|
||||
|
||||
scm->reset.ops = &qcom_scm_pas_reset_ops;
|
||||
scm->reset.nr_resets = 1;
|
||||
|
||||
Reference in New Issue
Block a user