]> git.baikalelectronics.ru Git - kernel.git/commit
remoteproc: qcom_q6v5_pas: Do not fail if regulators are not found
authorManivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Mon, 1 Aug 2022 05:39:39 +0000 (11:09 +0530)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Mon, 8 Aug 2022 15:32:17 +0000 (10:32 -0500)
commit36d9cd3b5049567259a2b7021787c3fa8f843744
tree08004000c0c53c2162ab72f712363576fbe3a13d
parent0cb88f68adcc1e78a824a494e26e13e1aa5e74df
remoteproc: qcom_q6v5_pas: Do not fail if regulators are not found

devm_regulator_get_optional() API will return -ENODEV if the regulator was
not found. For the optional supplies CX, PX we should not fail in that case
but rather continue. So let's catch that error and continue silently if
those regulators are not found.

The commit c6ffb2ab31dc ("remoteproc: qcom_q6v5_pas: Deal silently with
optional px and cx regulators") was supposed to do the same but it missed
the fact that devm_regulator_get_optional() API returns -ENODEV when the
regulator was not found.

Cc: Abel Vesa <abel.vesa@linaro.org>
Fixes: c6ffb2ab31dc ("remoteproc: qcom_q6v5_pas: Deal silently with optional px and cx regulators")
Reported-by: Steev Klimaszewski <steev@kali.org>
Reviewed-by: Abel Vesa <abel.vesa@linaro.org>
Reviewed-by: Johan Hovold <johan+linaro@kernel.org>
Tested-by: Steev Klimaszewski <steev@kali.org>
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Link: https://lore.kernel.org/r/20220801053939.12556-1-manivannan.sadhasivam@linaro.org
drivers/remoteproc/qcom_q6v5_pas.c