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

drm/gpuvm: Fix kernel-doc warning for drm_gpuvm_map_req.map

The kernel-doc for struct drm_gpuvm_map_req.map was added as '@op_map'
instead of '@map', leading to this warning during htmldocs build:

WARNING: include/drm/drm_gpuvm.h:1083 struct member 'map' not described in 'drm_gpuvm_map_req'

Fixes: 000a45dce7ad ("drm/gpuvm: Pass map arguments through a struct")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/all/20250821133539.03aa298e@canb.auug.org.au/
Signed-off-by: Ankan Biswas <spyjetfayed@gmail.com>
Signed-off-by: Danilo Krummrich <dakr@kernel.org>

authored by

Ankan Biswas and committed by
Danilo Krummrich
2aab1f99 6f719373

+1 -1
+1 -1
include/drm/drm_gpuvm.h
··· 1078 1078 */ 1079 1079 struct drm_gpuvm_map_req { 1080 1080 /** 1081 - * @op_map: struct drm_gpuva_op_map 1081 + * @map: struct drm_gpuva_op_map 1082 1082 */ 1083 1083 struct drm_gpuva_op_map map; 1084 1084 };