mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 02:24:24 +02:00
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>
This commit is contained in:
parent
074fe395fb
commit
6d1bb52292
|
|
@ -967,13 +967,13 @@ int amdgpu_userq_wait_ioctl(struct drm_device *dev, void *data,
|
|||
}
|
||||
|
||||
num_read_bo_handles = wait_info->num_bo_read_handles;
|
||||
ptr = u64_to_user_ptr(wait_info->bo_read_handles),
|
||||
ptr = u64_to_user_ptr(wait_info->bo_read_handles);
|
||||
r = drm_gem_objects_lookup(filp, ptr, num_read_bo_handles, &gobj_read);
|
||||
if (r)
|
||||
goto free_timeline_points;
|
||||
|
||||
num_write_bo_handles = wait_info->num_bo_write_handles;
|
||||
ptr = u64_to_user_ptr(wait_info->bo_write_handles),
|
||||
ptr = u64_to_user_ptr(wait_info->bo_write_handles);
|
||||
r = drm_gem_objects_lookup(filp, ptr, num_write_bo_handles,
|
||||
&gobj_write);
|
||||
if (r)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user