Skip to content

Commit 04c8970

Browse files
Chen Niairlied
authored andcommitted
drm/nouveau/vfn/r535: Convert comma to semicolon
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 <[email protected]> Fixes: cd3c622 ("drm/nouveau/gsp: add usermode class id to gpu hal") Signed-off-by: Dave Airlie <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent a9062ec commit 04c8970

File tree

1 file changed

+1
-1
lines changed
  • drivers/gpu/drm/nouveau/nvkm/subdev/vfn

1 file changed

+1
-1
lines changed

drivers/gpu/drm/nouveau/nvkm/subdev/vfn/r535.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ r535_vfn_new(const struct nvkm_vfn_func *hw,
4242
return -ENOMEM;
4343

4444
rm->dtor = r535_vfn_dtor;
45-
rm->intr = &tu102_vfn_intr,
45+
rm->intr = &tu102_vfn_intr;
4646
rm->user.addr = 0x030000;
4747
rm->user.size = 0x010000;
4848
rm->user.base.minver = -1;

0 commit comments

Comments
 (0)