[PATCH 1/3] amdgpu: fix typo debugsfs -> debugfs

Daniel Tobias posted 3 patches 3 years, 7 months ago
[PATCH 1/3] amdgpu: fix typo debugsfs -> debugfs
Posted by Daniel Tobias 3 years, 7 months ago
Signed-off-by: Daniel Tobias <dan.g.tob@gmail.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
index cb00c7d6f50b..5303a332e51c 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
@@ -1775,14 +1775,14 @@ int amdgpu_debugfs_init(struct amdgpu_device *adev)
 	ent = debugfs_create_file("amdgpu_preempt_ib", 0600, root, adev,
 				  &fops_ib_preempt);
 	if (IS_ERR(ent)) {
-		DRM_ERROR("unable to create amdgpu_preempt_ib debugsfs file\n");
+		DRM_ERROR("unable to create amdgpu_preempt_ib debugfs file\n");
 		return PTR_ERR(ent);
 	}
 
 	ent = debugfs_create_file("amdgpu_force_sclk", 0200, root, adev,
 				  &fops_sclk_set);
 	if (IS_ERR(ent)) {
-		DRM_ERROR("unable to create amdgpu_set_sclk debugsfs file\n");
+		DRM_ERROR("unable to create amdgpu_set_sclk debugfs file\n");
 		return PTR_ERR(ent);
 	}
 
-- 
2.37.2