[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220823070839.533562-2-dan.g.tob@gmail.com>
Date: Tue, 23 Aug 2022 17:08:37 +1000
From: Daniel Tobias <dan.g.tob@...il.com>
To: linux-kernel@...r.kernel.org
Cc: Daniel Tobias <dan.g.tob@...il.com>, nirmoy.das@....com,
alexander.deucher@....com, trivial@...nel.org
Subject: [PATCH 1/3] amdgpu: fix typo debugsfs -> debugfs
Signed-off-by: Daniel Tobias <dan.g.tob@...il.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
Powered by blists - more mailing lists