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/gpuvm: Fix doc comments

Correctly summerize drm_gpuvm_sm_map/unmap, and fix the parameter order
and names. Just something I noticed in passing.

v2: Don't rename the arg names in prototypes to match function
declarations [Danilo]

Signed-off-by: Rob Clark <robin.clark@oss.qualcomm.com>
Acked-by: Danilo Krummrich <dakr@kernel.org>
Tested-by: Antonino Maniscalco <antomani103@gmail.com>
Reviewed-by: Antonino Maniscalco <antomani103@gmail.com>
Patchwork: https://patchwork.freedesktop.org/patch/661456/

Rob Clark 9d712c50 1c8c3540

+3 -3
+3 -3
drivers/gpu/drm/drm_gpuvm.c
··· 2300 2300 } 2301 2301 2302 2302 /** 2303 - * drm_gpuvm_sm_map() - creates the &drm_gpuva_op split/merge steps 2303 + * drm_gpuvm_sm_map() - calls the &drm_gpuva_op split/merge steps 2304 2304 * @gpuvm: the &drm_gpuvm representing the GPU VA space 2305 + * @priv: pointer to a driver private data structure 2305 2306 * @req_addr: the start address of the new mapping 2306 2307 * @req_range: the range of the new mapping 2307 2308 * @req_obj: the &drm_gem_object to map 2308 2309 * @req_offset: the offset within the &drm_gem_object 2309 - * @priv: pointer to a driver private data structure 2310 2310 * 2311 2311 * This function iterates the given range of the GPU VA space. It utilizes the 2312 2312 * &drm_gpuvm_ops to call back into the driver providing the split and merge ··· 2350 2350 EXPORT_SYMBOL_GPL(drm_gpuvm_sm_map); 2351 2351 2352 2352 /** 2353 - * drm_gpuvm_sm_unmap() - creates the &drm_gpuva_ops to split on unmap 2353 + * drm_gpuvm_sm_unmap() - calls the &drm_gpuva_ops to split on unmap 2354 2354 * @gpuvm: the &drm_gpuvm representing the GPU VA space 2355 2355 * @priv: pointer to a driver private data structure 2356 2356 * @req_addr: the start address of the range to unmap