[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20210911081347.33929-1-cuibixuan@huawei.com>
Date: Sat, 11 Sep 2021 16:13:47 +0800
From: Bixuan Cui <cuibixuan@...wei.com>
To: <linux-kernel@...r.kernel.org>, <linux-remoteproc@...r.kernel.org>,
<linux-arm-msm@...r.kernel.org>
CC: <agross@...nel.org>, <bjorn.andersson@...aro.org>,
<ohad@...ery.com>, <mathieu.poirier@...aro.org>
Subject: [PATCH -next] remoteproc: qcom_wcnss: Add missing of_node_put() in qcom_iris_probe()
Add missing of_node_put() in qcom_iris_probe() before return.
Reported-by: Hulk Robot <hulkci@...wei.com>
Signed-off-by: Bixuan Cui <cuibixuan@...wei.com>
---
drivers/remoteproc/qcom_wcnss_iris.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/remoteproc/qcom_wcnss_iris.c b/drivers/remoteproc/qcom_wcnss_iris.c
index 09720ddddc85..f77ab49a9cae 100644
--- a/drivers/remoteproc/qcom_wcnss_iris.c
+++ b/drivers/remoteproc/qcom_wcnss_iris.c
@@ -140,6 +140,7 @@ struct qcom_iris *qcom_iris_probe(struct device *parent, bool *use_48mhz_xo)
ret = device_add(&iris->dev);
if (ret) {
put_device(&iris->dev);
+ of_node_put(of_node);
return ERR_PTR(ret);
}
@@ -192,10 +193,12 @@ struct qcom_iris *qcom_iris_probe(struct device *parent, bool *use_48mhz_xo)
*use_48mhz_xo = data->use_48mhz_xo;
+ of_node_put(of_node);
return iris;
err_device_del:
device_del(&iris->dev);
+ of_node_put(of_node);
return ERR_PTR(ret);
}
--
2.17.1
Powered by blists - more mailing lists