]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/gpuvm: Fix kernel-doc warning for drm_gpuvm_map_req.map
authorAnkan Biswas <spyjetfayed@gmail.com>
Wed, 15 Oct 2025 15:20:57 +0000 (20:50 +0530)
committerDanilo Krummrich <dakr@kernel.org>
Wed, 15 Oct 2025 16:37:05 +0000 (18:37 +0200)
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>
include/drm/drm_gpuvm.h

index 8890ded1d90752a2acbb564f697aa5ab03b5d052..476990e761f8699853617f3dfafdd513beaf9c0c 100644 (file)
@@ -1078,7 +1078,7 @@ struct drm_gpuva_ops {
  */
 struct drm_gpuvm_map_req {
        /**
-        * @op_map: struct drm_gpuva_op_map
+        * @map: struct drm_gpuva_op_map
         */
        struct drm_gpuva_op_map map;
 };