[PATCH] remoteproc: qcom_q6v5_wcss: remove unneeded semicolon

From: Chen Ni

Date: Mon Jul 13 2026 - 23:25:23 EST


Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.

Signed-off-by: Chen Ni <nichen@xxxxxxxxxxx>
---
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