Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/amdgpu/userq: convert comma to semicolon

Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it 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>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>

authored by

Chen Ni and committed by
Alex Deucher
6d1bb522 074fe395

+2 -2
+2 -2
drivers/gpu/drm/amd/amdgpu/amdgpu_userq_fence.c
··· 967 967 } 968 968 969 969 num_read_bo_handles = wait_info->num_bo_read_handles; 970 - ptr = u64_to_user_ptr(wait_info->bo_read_handles), 970 + ptr = u64_to_user_ptr(wait_info->bo_read_handles); 971 971 r = drm_gem_objects_lookup(filp, ptr, num_read_bo_handles, &gobj_read); 972 972 if (r) 973 973 goto free_timeline_points; 974 974 975 975 num_write_bo_handles = wait_info->num_bo_write_handles; 976 - ptr = u64_to_user_ptr(wait_info->bo_write_handles), 976 + ptr = u64_to_user_ptr(wait_info->bo_write_handles); 977 977 r = drm_gem_objects_lookup(filp, ptr, num_write_bo_handles, 978 978 &gobj_write); 979 979 if (r)