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

drm/ttm: fix ttm_kmap_iter.h kernel-doc warnings

There's no proper way to document function pointer members, but at least
silence the warnings.

Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Huang Rui <ray.huang@amd.com>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/e80e74ac4b6c5f1df3bc2dd98651ba289aae8e83.1709898638.git.jani.nikula@intel.com

+2 -2
+2 -2
include/drm/ttm/ttm_kmap_iter.h
··· 20 20 */ 21 21 struct ttm_kmap_iter_ops { 22 22 /** 23 - * kmap_local() - Map a PAGE_SIZE part of the resource using 23 + * @map_local: Map a PAGE_SIZE part of the resource using 24 24 * kmap_local semantics. 25 25 * @res_iter: Pointer to the struct ttm_kmap_iter representing 26 26 * the resource. ··· 31 31 void (*map_local)(struct ttm_kmap_iter *res_iter, 32 32 struct iosys_map *dmap, pgoff_t i); 33 33 /** 34 - * unmap_local() - Unmap a PAGE_SIZE part of the resource previously 34 + * @unmap_local: Unmap a PAGE_SIZE part of the resource previously 35 35 * mapped using kmap_local. 36 36 * @res_iter: Pointer to the struct ttm_kmap_iter representing 37 37 * the resource.