diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-12-02 09:27:15 +0100 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-12-03 15:54:03 -0500 |
commit | 25dd7a4469ae42369c2d90b1c73cde1e27bf4b54 (patch) | |
tree | c45b82b2417e3407ca62956c3cbe5172ea29416b /drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | |
parent | 9bf1019c5f3f11ab615c2d531868d1fe9887e560 (diff) | |
download | linux-25dd7a4469ae42369c2d90b1c73cde1e27bf4b54.tar.gz linux-25dd7a4469ae42369c2d90b1c73cde1e27bf4b54.tar.bz2 linux-25dd7a4469ae42369c2d90b1c73cde1e27bf4b54.zip |
drm: amdgpu: fix a kernel-doc markup
The function name at kernel-doc markup doesn't match the name
of the function:
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c:1534: warning: expecting prototype for amdgpu_debugfs_print_bo_info(). Prototype was for amdgpu_bo_print_info() instead
Fix it.
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_object.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c index c6c9723d3d8a..fd7a93c32235 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c @@ -1518,7 +1518,7 @@ uint32_t amdgpu_bo_get_preferred_pin_domain(struct amdgpu_device *adev, } while (0) /** - * amdgpu_debugfs_print_bo_info - print BO info in debugfs file + * amdgpu_bo_print_info - print BO info in debugfs file * * @id: Index or Id of the BO * @bo: Requested BO for printing info |