mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
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 <nichen@iscas.ac.cn>
Fixes: cd3c62282b ("drm/nouveau/gsp: add usermode class id to gpu hal")
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://lore.kernel.org/r/20250603061027.1310267-1-nichen@iscas.ac.cn
This commit is contained in:
parent
a9062ece98
commit
04c8970771
|
|
@ -42,7 +42,7 @@ r535_vfn_new(const struct nvkm_vfn_func *hw,
|
|||
return -ENOMEM;
|
||||
|
||||
rm->dtor = r535_vfn_dtor;
|
||||
rm->intr = &tu102_vfn_intr,
|
||||
rm->intr = &tu102_vfn_intr;
|
||||
rm->user.addr = 0x030000;
|
||||
rm->user.size = 0x010000;
|
||||
rm->user.base.minver = -1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user