Re: [PATCH] media: mali-c55: Remove unneeded semicolon

From: Dan Scally
Date: Tue Nov 18 2025 - 03:41:49 EST


Hi Chen, thanks for the patch

On 18/11/2025 02:04, 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@xxxxxxxxxxx>
---

Reviewed-by: Daniel Scally <dan.scally@xxxxxxxxxxxxxxxx>

drivers/media/platform/arm/mali-c55/mali-c55-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/platform/arm/mali-c55/mali-c55-core.c b/drivers/media/platform/arm/mali-c55/mali-c55-core.c
index 43b834459ccf..e4118e8e0faa 100644
--- a/drivers/media/platform/arm/mali-c55/mali-c55-core.c
+++ b/drivers/media/platform/arm/mali-c55/mali-c55-core.c
@@ -458,7 +458,7 @@ static int mali_c55_media_frameworks_init(struct mali_c55 *mali_c55)
if (ret) {
dev_err(mali_c55->dev, "failed to register V4L2 device\n");
goto err_unregister_media_device;
- };
+ }
mali_c55->notifier.ops = &mali_c55_notifier_ops;
v4l2_async_nf_init(&mali_c55->notifier, &mali_c55->v4l2_dev);