Linux Documentation
 help / color / mirror / Atom feed
* [PATCH] Documentation/gpu: Fix spelling mistakes in todo gpu doc
@ 2026-09-03 17:04 Hardik Kumar
  2026-09-03 17:27 ` Randy Dunlap
  0 siblings, 1 reply; 2+ messages in thread
From: Hardik Kumar @ 2026-09-03 17:04 UTC (permalink / raw)
  To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
	Simona Vetter, Jonathan Corbet, Shuah Khan, Randy Dunlap
  Cc: dri-devel, linux-doc, linux-kernel, Hardik Kumar

Fix some obvious typos in the todo.rst doc.

Correct spellings of incorrect words.
Fix an article usage.

Signed-off-by: Hardik Kumar <hardikxk@gmail.com>
---
 Documentation/gpu/todo.rst | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Documentation/gpu/todo.rst b/Documentation/gpu/todo.rst
index 14cf37590..187932554 100644
--- a/Documentation/gpu/todo.rst
+++ b/Documentation/gpu/todo.rst
@@ -277,8 +277,8 @@ Various hold-ups:
 - Need to switch to drm_gem_fb_create(), as now drm_gem_fb_create() checks for
   valid formats for atomic drivers.
 
-- Many drivers subclass drm_framebuffer, we'd need a embedding compatible
-  version of the varios drm_gem_fb_create functions. Maybe called
+- Many drivers subclass drm_framebuffer, we'd need an embedding compatible
+  version of the various drm_gem_fb_create functions. Maybe called
   drm_gem_fb_create/_with_dirty/_with_funcs as needed.
 
 Contact: Simona Vetter
@@ -303,7 +303,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.
@@ -465,7 +465,7 @@ be turned into a WARN_ON() or somehow made louder.
 At the moment, we expect that we may still encounter the warnings in the
 drm_panel core when using panel-simple and panel-edp. Since those panel
 drivers are used with a lot of different DRM modeset drivers they still
-make an extra effort to disable/unprepare the panel themsevles at shutdown
+make an extra effort to disable/unprepare the panel themselves at shutdown
 time. Specifically we could still encounter those warnings if the panel
 driver gets shutdown() _before_ the DRM modeset driver and the DRM modeset
 driver properly calls drm_atomic_helper_shutdown() in its own shutdown()
@@ -891,7 +891,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.

---
base-commit: 66498c75b4f8017f62d720d9b59675bdf3abce91
change-id: 20260903-docs-gpu-todo-31116c645874

Best regards,
-- 
Hardik Kumar <hardikxk@gmail.com>


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

* Re: [PATCH] Documentation/gpu: Fix spelling mistakes in todo gpu doc
  2026-09-03 17:04 [PATCH] Documentation/gpu: Fix spelling mistakes in todo gpu doc Hardik Kumar
@ 2026-09-03 17:27 ` Randy Dunlap
  0 siblings, 0 replies; 2+ messages in thread
From: Randy Dunlap @ 2026-09-03 17:27 UTC (permalink / raw)
  To: Hardik Kumar, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
	David Airlie, Simona Vetter, Jonathan Corbet, Shuah Khan
  Cc: dri-devel, linux-doc, linux-kernel



On 9/3/26 10:04 AM, Hardik Kumar wrote:
> Fix some obvious typos in the todo.rst doc.
> 
> Correct spellings of incorrect words.
> Fix an article usage.
> 
> Signed-off-by: Hardik Kumar <hardikxk@gmail.com>
> ---
>  Documentation/gpu/todo.rst | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/Documentation/gpu/todo.rst b/Documentation/gpu/todo.rst
> index 14cf37590..187932554 100644
> --- a/Documentation/gpu/todo.rst
> +++ b/Documentation/gpu/todo.rst
> @@ -277,8 +277,8 @@ Various hold-ups:
>  - Need to switch to drm_gem_fb_create(), as now drm_gem_fb_create() checks for
>    valid formats for atomic drivers.
>  
> -- Many drivers subclass drm_framebuffer, we'd need a embedding compatible
> -  version of the varios drm_gem_fb_create functions. Maybe called
> +- Many drivers subclass drm_framebuffer, we'd need an embedding compatible
> +  version of the various drm_gem_fb_create functions. Maybe called

LGTM except for the comma splice above, which you weren't
attempting to repair. Thanks.

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

>    drm_gem_fb_create/_with_dirty/_with_funcs as needed.
>  
>  Contact: Simona Vetter
> @@ -303,7 +303,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.
> @@ -465,7 +465,7 @@ be turned into a WARN_ON() or somehow made louder.
>  At the moment, we expect that we may still encounter the warnings in the
>  drm_panel core when using panel-simple and panel-edp. Since those panel
>  drivers are used with a lot of different DRM modeset drivers they still
> -make an extra effort to disable/unprepare the panel themsevles at shutdown
> +make an extra effort to disable/unprepare the panel themselves at shutdown
>  time. Specifically we could still encounter those warnings if the panel
>  driver gets shutdown() _before_ the DRM modeset driver and the DRM modeset
>  driver properly calls drm_atomic_helper_shutdown() in its own shutdown()
> @@ -891,7 +891,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.
> 
> ---
> base-commit: 66498c75b4f8017f62d720d9b59675bdf3abce91
> change-id: 20260903-docs-gpu-todo-31116c645874
> 
> Best regards,

-- 
~Randy

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

end of thread, other threads:[~2026-09-03 17:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-03 17:04 [PATCH] Documentation/gpu: Fix spelling mistakes in todo gpu doc Hardik Kumar
2026-09-03 17:27 ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox