linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] docs: gpu: fix typo
@ 2025-08-21  2:59 Rakuram Eswaran
  2025-08-21  2:59 ` [PATCH v2 1/2] docs: gpu: amdgpu: Fix spelling in amdgpu documentation Rakuram Eswaran
  2025-08-21  2:59 ` [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation Rakuram Eswaran
  0 siblings, 2 replies; 7+ messages in thread
From: Rakuram Eswaran @ 2025-08-21  2:59 UTC (permalink / raw)
  To: linux-doc, alexander.deucher, christian.koenig, airlied, corbet
  Cc: tzimmermann, mripard, maarten.lankhorst, simona, siqueira,
	harry.wentland, amd-gfx, dri-devel, linux-kernel,
	linux-kernel-mentees, skhan, rakuram.e96

Fixed multiple typos in GPU documentation reported by Codespell.

This series touches both amdgpu- and drm-related files.

Changelog:

Changes since v1:
- Dropped fix for drm-mm.rst (was included in v1)
- Split into a patch series targeting both amdgpu and drm

Rakuram Eswaran (2):
  docs: gpu: amdgpu: Fix spelling in amdgpu documentation
  docs: gpu: Fix spelling in gpu documentation

 Documentation/gpu/amdgpu/debugfs.rst                       | 4 ++--
 Documentation/gpu/amdgpu/display/programming-model-dcn.rst | 2 +-
 Documentation/gpu/amdgpu/process-isolation.rst             | 2 +-
 Documentation/gpu/drm-uapi.rst                             | 2 +-
 Documentation/gpu/todo.rst                                 | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

-- 
2.43.0


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

* [PATCH v2 1/2] docs: gpu: amdgpu: Fix spelling in amdgpu documentation
  2025-08-21  2:59 [PATCH v2 0/2] docs: gpu: fix typo Rakuram Eswaran
@ 2025-08-21  2:59 ` Rakuram Eswaran
  2025-08-21  3:06   ` Randy Dunlap
  2025-08-21  2:59 ` [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation Rakuram Eswaran
  1 sibling, 1 reply; 7+ messages in thread
From: Rakuram Eswaran @ 2025-08-21  2:59 UTC (permalink / raw)
  To: linux-doc, alexander.deucher, christian.koenig, airlied, corbet
  Cc: tzimmermann, mripard, maarten.lankhorst, simona, siqueira,
	harry.wentland, amd-gfx, dri-devel, linux-kernel,
	linux-kernel-mentees, skhan, rakuram.e96, Randy Dunlap,
	Alexander Deucher

Fixed following typos reported by Codespell

1. propogated ==> propagated
   aperatures ==> apertures
In Documentation/gpu/amdgpu/debugfs.rst

2. parition ==> partition
In Documentation/gpu/amdgpu/process-isolation.rst

3. conections ==> connections
In Documentation/gpu/amdgpu/display/programming-model-dcn.rst

In addition to above,
Fixed wrong bit-partition naming in gpu/amdgpu/process-isolation.rst
from "fourth" partition to "third" partition.

Suggested-by: Randy Dunlap <rdunlap@infradead.org>
Suggested-by: Alexander Deucher <Alexander.Deucher@amd.com>
Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>
---
 Documentation/gpu/amdgpu/debugfs.rst                       | 4 ++--
 Documentation/gpu/amdgpu/display/programming-model-dcn.rst | 2 +-
 Documentation/gpu/amdgpu/process-isolation.rst             | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/gpu/amdgpu/debugfs.rst b/Documentation/gpu/amdgpu/debugfs.rst
index 5150d0a95658..151d8bfc79e2 100644
--- a/Documentation/gpu/amdgpu/debugfs.rst
+++ b/Documentation/gpu/amdgpu/debugfs.rst
@@ -94,7 +94,7 @@ amdgpu_error_<name>
 -------------------
 
 Provides an interface to set an error code on the dma fences associated with
-ring <name>.  The error code specified is propogated to all fences associated
+ring <name>.  The error code specified is propagated to all fences associated
 with the ring.  Use this to inject a fence error into a ring.
 
 amdgpu_pm_info
@@ -165,7 +165,7 @@ GTT memory.
 amdgpu_regs_*
 -------------
 
-Provides direct access to various register aperatures on the GPU.  Used
+Provides direct access to various register apertures on the GPU.  Used
 by tools like UMR to access GPU registers.
 
 amdgpu_regs2
diff --git a/Documentation/gpu/amdgpu/display/programming-model-dcn.rst b/Documentation/gpu/amdgpu/display/programming-model-dcn.rst
index c1b48d49fb0b..bc7de97a746f 100644
--- a/Documentation/gpu/amdgpu/display/programming-model-dcn.rst
+++ b/Documentation/gpu/amdgpu/display/programming-model-dcn.rst
@@ -100,7 +100,7 @@ represents the connected display.
    For historical reasons, we used the name `dc_link`, which gives the
    wrong impression that this abstraction only deals with physical connections
    that the developer can easily manipulate. However, this also covers
-   conections like eDP or cases where the output is connected to other devices.
+   connections like eDP or cases where the output is connected to other devices.
 
 There are two structs that are not represented in the diagram since they were
 elaborated in the DCN overview page  (check the DCN block diagram :ref:`Display
diff --git a/Documentation/gpu/amdgpu/process-isolation.rst b/Documentation/gpu/amdgpu/process-isolation.rst
index 6b6d70e357a7..25b06ffefc33 100644
--- a/Documentation/gpu/amdgpu/process-isolation.rst
+++ b/Documentation/gpu/amdgpu/process-isolation.rst
@@ -26,7 +26,7 @@ Example of enabling enforce isolation on a GPU with multiple partitions:
     $ cat /sys/class/drm/card0/device/enforce_isolation
     1 0 1 0
 
-The output indicates that enforce isolation is enabled on zeroth and second parition and disabled on first and fourth parition.
+The output indicates that enforce isolation is enabled on zeroth and second partition and disabled on first and third partition.
 
 For devices with a single partition or those that do not support partitions, there will be only one element:
 
-- 
2.43.0


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

* [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation
  2025-08-21  2:59 [PATCH v2 0/2] docs: gpu: fix typo Rakuram Eswaran
  2025-08-21  2:59 ` [PATCH v2 1/2] docs: gpu: amdgpu: Fix spelling in amdgpu documentation Rakuram Eswaran
@ 2025-08-21  2:59 ` Rakuram Eswaran
  2025-08-21  3:06   ` Randy Dunlap
  2025-08-29 17:42   ` Rakuram Eswaran
  1 sibling, 2 replies; 7+ messages in thread
From: Rakuram Eswaran @ 2025-08-21  2:59 UTC (permalink / raw)
  To: linux-doc, alexander.deucher, christian.koenig, airlied, corbet
  Cc: tzimmermann, mripard, maarten.lankhorst, simona, siqueira,
	harry.wentland, amd-gfx, dri-devel, linux-kernel,
	linux-kernel-mentees, skhan, rakuram.e96, Randy Dunlap,
	Alexander Deucher

Fixed following typos reported by Codespell

1. complection ==> completion
   implementions ==> implementations
In Documentation/gpu/todo.rst

2. unpriviledged ==> unprivileged
In Documentation/gpu/drm-uapi.rst

Suggested-by: Randy Dunlap <rdunlap@infradead.org>
Suggested-by: Alexander Deucher <Alexander.Deucher@amd.com>
Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>
---
 Documentation/gpu/drm-uapi.rst | 2 +-
 Documentation/gpu/todo.rst     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/gpu/drm-uapi.rst b/Documentation/gpu/drm-uapi.rst
index 843facf01b2d..7435664a1ffe 100644
--- a/Documentation/gpu/drm-uapi.rst
+++ b/Documentation/gpu/drm-uapi.rst
@@ -535,7 +535,7 @@ ENOSPC:
 EPERM/EACCES:
         Returned for an operation that is valid, but needs more privileges.
         E.g. root-only or much more common, DRM master-only operations return
-        this when called by unpriviledged clients. There's no clear
+        this when called by unprivileged clients. There's no clear
         difference between EACCES and EPERM.
 
 ENODEV:
diff --git a/Documentation/gpu/todo.rst b/Documentation/gpu/todo.rst
index be8637da3fe9..1d064e617699 100644
--- a/Documentation/gpu/todo.rst
+++ b/Documentation/gpu/todo.rst
@@ -319,7 +319,7 @@ everything after it has done the write-protect/mkwrite trickery:
 
       vma->vm_page_prot = pgprot_wrprotect(vma->vm_page_prot);
 
-- Set the mkwrite and fsync callbacks with similar implementions to the core
+- Set the mkwrite and fsync callbacks with similar implementations to the core
   fbdev defio stuff. These should all work on plain ptes, they don't actually
   require a struct page.  uff. These should all work on plain ptes, they don't
   actually require a struct page.
@@ -854,7 +854,7 @@ Querying errors from drm_syncobj
 ================================
 
 The drm_syncobj container can be used by driver independent code to signal
-complection of submission.
+completion of submission.
 
 One minor feature still missing is a generic DRM IOCTL to query the error
 status of binary and timeline drm_syncobj.
-- 
2.43.0


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

* Re: [PATCH v2 1/2] docs: gpu: amdgpu: Fix spelling in amdgpu documentation
  2025-08-21  2:59 ` [PATCH v2 1/2] docs: gpu: amdgpu: Fix spelling in amdgpu documentation Rakuram Eswaran
@ 2025-08-21  3:06   ` Randy Dunlap
  2025-08-21 13:33     ` Alex Deucher
  0 siblings, 1 reply; 7+ messages in thread
From: Randy Dunlap @ 2025-08-21  3:06 UTC (permalink / raw)
  To: Rakuram Eswaran, linux-doc, alexander.deucher, christian.koenig,
	airlied, corbet
  Cc: tzimmermann, mripard, maarten.lankhorst, simona, siqueira,
	harry.wentland, amd-gfx, dri-devel, linux-kernel,
	linux-kernel-mentees, skhan



On 8/20/25 7:59 PM, Rakuram Eswaran wrote:
> Fixed following typos reported by Codespell
> 
> 1. propogated ==> propagated
>    aperatures ==> apertures
> In Documentation/gpu/amdgpu/debugfs.rst
> 
> 2. parition ==> partition
> In Documentation/gpu/amdgpu/process-isolation.rst
> 
> 3. conections ==> connections
> In Documentation/gpu/amdgpu/display/programming-model-dcn.rst
> 
> In addition to above,
> Fixed wrong bit-partition naming in gpu/amdgpu/process-isolation.rst
> from "fourth" partition to "third" partition.
> 
> Suggested-by: Randy Dunlap <rdunlap@infradead.org>
> Suggested-by: Alexander Deucher <Alexander.Deucher@amd.com>
> Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

Thanks.

> ---
>  Documentation/gpu/amdgpu/debugfs.rst                       | 4 ++--
>  Documentation/gpu/amdgpu/display/programming-model-dcn.rst | 2 +-
>  Documentation/gpu/amdgpu/process-isolation.rst             | 2 +-
>  3 files changed, 4 insertions(+), 4 deletions(-)


-- 
~Randy

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

* Re: [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation
  2025-08-21  2:59 ` [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation Rakuram Eswaran
@ 2025-08-21  3:06   ` Randy Dunlap
  2025-08-29 17:42   ` Rakuram Eswaran
  1 sibling, 0 replies; 7+ messages in thread
From: Randy Dunlap @ 2025-08-21  3:06 UTC (permalink / raw)
  To: Rakuram Eswaran, linux-doc, alexander.deucher, christian.koenig,
	airlied, corbet
  Cc: tzimmermann, mripard, maarten.lankhorst, simona, siqueira,
	harry.wentland, amd-gfx, dri-devel, linux-kernel,
	linux-kernel-mentees, skhan



On 8/20/25 7:59 PM, Rakuram Eswaran wrote:
> Fixed following typos reported by Codespell
> 
> 1. complection ==> completion
>    implementions ==> implementations
> In Documentation/gpu/todo.rst
> 
> 2. unpriviledged ==> unprivileged
> In Documentation/gpu/drm-uapi.rst
> 
> Suggested-by: Randy Dunlap <rdunlap@infradead.org>
> Suggested-by: Alexander Deucher <Alexander.Deucher@amd.com>
> Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>

Thanks.

> ---
>  Documentation/gpu/drm-uapi.rst | 2 +-
>  Documentation/gpu/todo.rst     | 4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)


-- 
~Randy

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

* Re: [PATCH v2 1/2] docs: gpu: amdgpu: Fix spelling in amdgpu documentation
  2025-08-21  3:06   ` Randy Dunlap
@ 2025-08-21 13:33     ` Alex Deucher
  0 siblings, 0 replies; 7+ messages in thread
From: Alex Deucher @ 2025-08-21 13:33 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Rakuram Eswaran, linux-doc, alexander.deucher, christian.koenig,
	airlied, corbet, tzimmermann, mripard, maarten.lankhorst, simona,
	siqueira, harry.wentland, amd-gfx, dri-devel, linux-kernel,
	linux-kernel-mentees, skhan

Applied.  Thanks!

Alex

On Wed, Aug 20, 2025 at 11:13 PM Randy Dunlap <rdunlap@infradead.org> wrote:
>
>
>
> On 8/20/25 7:59 PM, Rakuram Eswaran wrote:
> > Fixed following typos reported by Codespell
> >
> > 1. propogated ==> propagated
> >    aperatures ==> apertures
> > In Documentation/gpu/amdgpu/debugfs.rst
> >
> > 2. parition ==> partition
> > In Documentation/gpu/amdgpu/process-isolation.rst
> >
> > 3. conections ==> connections
> > In Documentation/gpu/amdgpu/display/programming-model-dcn.rst
> >
> > In addition to above,
> > Fixed wrong bit-partition naming in gpu/amdgpu/process-isolation.rst
> > from "fourth" partition to "third" partition.
> >
> > Suggested-by: Randy Dunlap <rdunlap@infradead.org>
> > Suggested-by: Alexander Deucher <Alexander.Deucher@amd.com>
> > Signed-off-by: Rakuram Eswaran <rakuram.e96@gmail.com>
>
> Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
>
> Thanks.
>
> > ---
> >  Documentation/gpu/amdgpu/debugfs.rst                       | 4 ++--
> >  Documentation/gpu/amdgpu/display/programming-model-dcn.rst | 2 +-
> >  Documentation/gpu/amdgpu/process-isolation.rst             | 2 +-
> >  3 files changed, 4 insertions(+), 4 deletions(-)
>
>
> --
> ~Randy

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

* Re: [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation
  2025-08-21  2:59 ` [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation Rakuram Eswaran
  2025-08-21  3:06   ` Randy Dunlap
@ 2025-08-29 17:42   ` Rakuram Eswaran
  1 sibling, 0 replies; 7+ messages in thread
From: Rakuram Eswaran @ 2025-08-29 17:42 UTC (permalink / raw)
  To: rakuram.e96, airlied, simona, maarten.lankhorst, mripard,
	tzimmermann
  Cc: alexander.deucher, amd-gfx, christian.koenig, corbet, dri-devel,
	harry.wentland, linux-doc, linux-kernel-mentees, linux-kernel,
	rdunlap, siqueira, skhan

Hi all,

This is a gentle follow-up on this patch. Please let me know if any further
changes are required.

Regards

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

end of thread, other threads:[~2025-08-29 17:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-21  2:59 [PATCH v2 0/2] docs: gpu: fix typo Rakuram Eswaran
2025-08-21  2:59 ` [PATCH v2 1/2] docs: gpu: amdgpu: Fix spelling in amdgpu documentation Rakuram Eswaran
2025-08-21  3:06   ` Randy Dunlap
2025-08-21 13:33     ` Alex Deucher
2025-08-21  2:59 ` [PATCH v2 2/2] docs: gpu: Fix spelling in gpu documentation Rakuram Eswaran
2025-08-21  3:06   ` Randy Dunlap
2025-08-29 17:42   ` Rakuram Eswaran

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).