From: Alexandru Gagniuc Date: Sat, 29 Nov 2025 01:32:06 +0000 (-0600) Subject: remoteproc: qcom_q6v5_wcss: use optional reset for wcss_q6_bcr_reset X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=641092c1bc1bbc3be059d9d723b1cec10a368617;p=thirdparty%2Fkernel%2Flinux.git remoteproc: qcom_q6v5_wcss: use optional reset for wcss_q6_bcr_reset The "wcss_q6_bcr_reset" is not used on IPQ8074, and IPQ6018. Use devm_reset_control_get_optional_exclusive() for this reset so that probe() does not fail on platforms where it is not used. Signed-off-by: Alexandru Gagniuc Link: https://lore.kernel.org/r/20251129013207.3981517-2-mr.nuke.me@gmail.com Signed-off-by: Bjorn Andersson --- diff --git a/drivers/remoteproc/qcom_q6v5_wcss.c b/drivers/remoteproc/qcom_q6v5_wcss.c index 83fe5b9a02408..c27200159a88a 100644 --- a/drivers/remoteproc/qcom_q6v5_wcss.c +++ b/drivers/remoteproc/qcom_q6v5_wcss.c @@ -811,7 +811,8 @@ static int q6v5_wcss_init_reset(struct q6v5_wcss *wcss, } } - wcss->wcss_q6_bcr_reset = devm_reset_control_get_exclusive(dev, "wcss_q6_bcr_reset"); + wcss->wcss_q6_bcr_reset = devm_reset_control_get_optional_exclusive(dev, + "wcss_q6_bcr_reset"); if (IS_ERR(wcss->wcss_q6_bcr_reset)) { dev_err(wcss->dev, "unable to acquire wcss_q6_bcr_reset\n"); return PTR_ERR(wcss->wcss_q6_bcr_reset);