drm/msm: Convert comma to semicolon
authorChen Ni <nichen@iscas.ac.cn>
Thu, 10 Apr 2025 02:52:21 +0000 (10:52 +0800)
committerDmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Thu, 1 May 2025 20:39:53 +0000 (23:39 +0300)
Replace comma between expressions with semicolons.

Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it is seems best to use ';'
unless ',' is intended.

Found by inspection.
No functional change intended.
Compile tested only.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Patchwork: https://patchwork.freedesktop.org/patch/647875/
Link: https://lore.kernel.org/r/20250410025221.3358387-1-nichen@iscas.ac.cn
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
drivers/gpu/drm/msm/msm_ringbuffer.c

index c5651c39ac2a6dcf262496c84737fa71cdb51b9d..89dce15eed3bd01d840feae2b60fb225bd49c72e 100644 (file)
@@ -93,7 +93,7 @@ struct msm_ringbuffer *msm_ringbuffer_new(struct msm_gpu *gpu, int id,
        }
 
        msm_gem_object_set_name(ring->bo, "ring%d", id);
-       args.name = to_msm_bo(ring->bo)->name,
+       args.name = to_msm_bo(ring->bo)->name;
 
        ring->end   = ring->start + (MSM_GPU_RINGBUFFER_SZ >> 2);
        ring->next  = ring->start;