All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] spelling: fix debugsfs -> debugfs
@ 2022-08-23  7:08 Daniel Tobias
  2022-08-23  7:08 ` [PATCH 1/3] amdgpu: fix typo " Daniel Tobias
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Daniel Tobias @ 2022-08-23  7:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: Daniel Tobias, trivial

Daniel Tobias (3):
  amdgpu: fix typo debugsfs -> debugfs
  scsi: fix typo debugsfs -> debugfs
  spellings.txt: add entry for debugsfs -> debugfs

 drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c | 4 ++--
 drivers/scsi/fnic/fnic_debugfs.c            | 4 ++--
 scripts/spelling.txt                        | 1 +
 3 files changed, 5 insertions(+), 4 deletions(-)

-- 
2.37.2
To: linux-kernel@vger.kernel.org

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/3] amdgpu: fix typo debugsfs -> debugfs
  2022-08-23  7:08 [PATCH 0/3] spelling: fix debugsfs -> debugfs Daniel Tobias
@ 2022-08-23  7:08 ` Daniel Tobias
  2022-08-23  7:08 ` [PATCH 2/3] scsi: " Daniel Tobias
  2022-08-23  7:08 ` [PATCH 3/3] spellings.txt: add entry for " Daniel Tobias
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Tobias @ 2022-08-23  7:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: Daniel Tobias, nirmoy.das, alexander.deucher, trivial

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


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] scsi: fix typo debugsfs -> debugfs
  2022-08-23  7:08 [PATCH 0/3] spelling: fix debugsfs -> debugfs Daniel Tobias
  2022-08-23  7:08 ` [PATCH 1/3] amdgpu: fix typo " Daniel Tobias
@ 2022-08-23  7:08 ` Daniel Tobias
  2022-08-23  7:08 ` [PATCH 3/3] spellings.txt: add entry for " Daniel Tobias
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Tobias @ 2022-08-23  7:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: Daniel Tobias, satishkh, jejb, trivial

Signed-off-by: Daniel Tobias <dan.g.tob@gmail.com>
---
 drivers/scsi/fnic/fnic_debugfs.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/fnic/fnic_debugfs.c b/drivers/scsi/fnic/fnic_debugfs.c
index 6fedc3b7d1ab..16fb05c8f347 100644
--- a/drivers/scsi/fnic/fnic_debugfs.c
+++ b/drivers/scsi/fnic/fnic_debugfs.c
@@ -425,7 +425,7 @@ void fnic_fc_trace_debugfs_terminate(void)
  * @file: The file pointer to attach the stats reset flag.
  *
  * Description:
- * This routine opens a debugsfs file reset_stats and stores i_private data
+ * This routine opens a debugfs file reset_stats and stores i_private data
  * to debug structure to retrieve later for while performing other
  * file oprations.
  *
@@ -569,7 +569,7 @@ static int fnic_reset_stats_release(struct inode *inode,
  * @file: The file pointer to attach the specific host statistics.
  *
  * Description:
- * This routine opens a debugsfs file stats of specific host and print
+ * This routine opens a debugfs file stats of specific host and print
  * fnic stats.
  *
  * Returns:
-- 
2.37.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] spellings.txt: add entry for debugsfs -> debugfs
  2022-08-23  7:08 [PATCH 0/3] spelling: fix debugsfs -> debugfs Daniel Tobias
  2022-08-23  7:08 ` [PATCH 1/3] amdgpu: fix typo " Daniel Tobias
  2022-08-23  7:08 ` [PATCH 2/3] scsi: " Daniel Tobias
@ 2022-08-23  7:08 ` Daniel Tobias
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Tobias @ 2022-08-23  7:08 UTC (permalink / raw)
  To: linux-kernel; +Cc: Daniel Tobias, akpm, trivial

Signed-off-by: Daniel Tobias <dan.g.tob@gmail.com>
---
 scripts/spelling.txt | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/spelling.txt b/scripts/spelling.txt
index 8435b99452b6..b1c111204abe 100644
--- a/scripts/spelling.txt
+++ b/scripts/spelling.txt
@@ -426,6 +426,7 @@ deactive||deactivate
 deafult||default
 deamon||daemon
 debouce||debounce
+debugsfs||debugfs
 decendant||descendant
 decendants||descendants
 decompres||decompress
-- 
2.37.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-08-23  7:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-23  7:08 [PATCH 0/3] spelling: fix debugsfs -> debugfs Daniel Tobias
2022-08-23  7:08 ` [PATCH 1/3] amdgpu: fix typo " Daniel Tobias
2022-08-23  7:08 ` [PATCH 2/3] scsi: " Daniel Tobias
2022-08-23  7:08 ` [PATCH 3/3] spellings.txt: add entry for " Daniel Tobias

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.