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

Configure Feed

Select the types of activity you want to include in your feed.

drm/gpuvm: fix name in kernel doc of drm_gpuvm_bo_obtain_locked()

When renaming this function, the name in the docs was not updated. This
causes a KernelDoc warning. Thus, fix it.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202601091113.0b0WuRML-lkp@intel.com/
Fixes: 9bf4ca1e699c ("drm/gpuvm: drm_gpuvm_bo_obtain() requires lock and staged mode")
Signed-off-by: Alice Ryhl <aliceryhl@google.com>
Link: https://patch.msgid.link/20260109082019.3999814-1-aliceryhl@google.com
Signed-off-by: Danilo Krummrich <dakr@kernel.org>

authored by

Alice Ryhl and committed by
Danilo Krummrich
29f4e730 5abffd7f

+2 -2
+2 -2
drivers/gpu/drm/drm_gpuvm.c
··· 1815 1815 EXPORT_SYMBOL_GPL(drm_gpuvm_bo_find); 1816 1816 1817 1817 /** 1818 - * drm_gpuvm_bo_obtain() - obtains an instance of the &drm_gpuvm_bo for the 1819 - * given &drm_gpuvm and &drm_gem_object 1818 + * drm_gpuvm_bo_obtain_locked() - obtains an instance of the &drm_gpuvm_bo for 1819 + * the given &drm_gpuvm and &drm_gem_object 1820 1820 * @gpuvm: The &drm_gpuvm the @obj is mapped in. 1821 1821 * @obj: The &drm_gem_object being mapped in the @gpuvm. 1822 1822 *