[PATCH] remoteproc: qcom_q6v5_wcss: remove unneeded semicolon

Chen Ni posted 1 patch 1 week, 4 days ago
drivers/remoteproc/qcom_q6v5_wcss.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH] remoteproc: qcom_q6v5_wcss: remove unneeded semicolon
Posted by Chen Ni 1 week, 4 days ago
Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
---
 drivers/remoteproc/qcom_q6v5_wcss.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/remoteproc/qcom_q6v5_wcss.c b/drivers/remoteproc/qcom_q6v5_wcss.c
index a6737b2d96da..318bb1a490b3 100644
--- a/drivers/remoteproc/qcom_q6v5_wcss.c
+++ b/drivers/remoteproc/qcom_q6v5_wcss.c
@@ -263,7 +263,7 @@ static int q6v7_wcss_reset(struct q6v5_wcss *wcss, struct rproc *rproc)
 	if (ret) {
 		dev_err(wcss->dev, "failed to enable clocks, err=%d\n", ret);
 		return ret;
-	};
+	}
 
 	/* Write bootaddr to Q6WCSS */
 	writel(rproc->bootaddr >> 4, wcss->reg_base + Q6SS_RST_EVB);
@@ -324,7 +324,7 @@ static int q6v7_wcss_reset(struct q6v5_wcss *wcss, struct rproc *rproc)
 	if (ret) {
 		dev_err(wcss->dev, "failed to enable clocks, err=%d\n", ret);
 		goto assert_aon_reset;
-	};
+	}
 
 	return 0;
 
@@ -424,7 +424,7 @@ static int q6v5_wcss_qcs404_power_on(struct q6v5_wcss *wcss)
 	if (ret) {
 		dev_err(wcss->dev, "failed to enable q6 clocks, err=%d\n", ret);
 		goto disable_gcc_abhs_cbcr_clk;
-	};
+	}
 
 	/* Enable the Q6AHBS CBC, Q6SSTOP_Q6SS_AHBS_CBCR clock */
 	ret = clk_prepare_enable(wcss->ahbs_cbcr);
-- 
2.25.1
Re: [PATCH] remoteproc: qcom_q6v5_wcss: remove unneeded semicolon
Posted by Konrad Dybcio 1 week, 4 days ago
On 7/14/26 5:22 AM, Chen Ni wrote:
> Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
> semantic patch at scripts/coccinelle/misc/semicolon.cocci.
> 
> Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad