diff options
| author | 2025-10-15 20:50:57 +0530 | |
|---|---|---|
| committer | 2025-10-15 18:37:05 +0200 | |
| commit | 2aab1f993c8cb753ccb3d5b848cd758e2e87d965 (patch) | |
| tree | 9153a8615eeab82484bb0c20db6a955c7d3d1f6d /include | |
| parent | drm/ast: Blank with VGACR17 sync enable, always clear VGACRB6 sync off (diff) | |
| download | wireguard-linux-2aab1f993c8cb753ccb3d5b848cd758e2e87d965.tar.xz wireguard-linux-2aab1f993c8cb753ccb3d5b848cd758e2e87d965.zip | |
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>
Diffstat (limited to 'include')
| -rw-r--r-- | include/drm/drm_gpuvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_gpuvm.h b/include/drm/drm_gpuvm.h index 8890ded1d907..476990e761f8 100644 --- a/include/drm/drm_gpuvm.h +++ b/include/drm/drm_gpuvm.h @@ -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; }; |
