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

drm/ttm: fix some minor kerneldoc issues

Pointed out by the kernel test robot while merging ttm_bo_api.h and
ttm_bo_driver.h.

Signed-off-by: Christian König <christian.koenig@amd.com>
Reported-by: kernel test robot <lkp@intel.com>
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230117123345.387078-1-christian.koenig@amd.com

+6 -7
+6 -7
drivers/gpu/drm/ttm/ttm_bo_util.c
··· 127 127 * ttm_bo_move_memcpy 128 128 * 129 129 * @bo: A pointer to a struct ttm_buffer_object. 130 - * @interruptible: Sleep interruptible if waiting. 131 - * @no_wait_gpu: Return immediately if the GPU is busy. 132 - * @new_mem: struct ttm_resource indicating where to move. 130 + * @ctx: operation context 131 + * @dst_mem: struct ttm_resource indicating where to move. 133 132 * 134 133 * Fallback move function for a mappable buffer object in mappable memory. 135 134 * The function will, if successful, ··· 280 281 /** 281 282 * ttm_io_prot 282 283 * 283 - * bo: ttm buffer object 284 - * res: ttm resource object 284 + * @bo: ttm buffer object 285 + * @res: ttm resource object 285 286 * @tmp: Page protection flag for a normal, cached mapping. 286 287 * 287 288 * Utility function that returns the pgprot_t that should be used for ··· 620 621 } 621 622 622 623 /** 623 - * ttm_bo_move_accel_cleanup. 624 + * ttm_bo_move_accel_cleanup - cleanup helper for hw copies 624 625 * 625 626 * @bo: A pointer to a struct ttm_buffer_object. 626 627 * @fence: A fence object that signals when moving is complete. ··· 664 665 EXPORT_SYMBOL(ttm_bo_move_accel_cleanup); 665 666 666 667 /** 667 - * ttm_bo_move_sync_cleanup. 668 + * ttm_bo_move_sync_cleanup - cleanup by waiting for the move to finish 668 669 * 669 670 * @bo: A pointer to a struct ttm_buffer_object. 670 671 * @new_mem: struct ttm_resource indicating where to move.