* [PATCH] docs: Fix typos under GPU TODO
@ 2026-07-01 2:52 Baran Tuna
2026-07-01 3:47 ` Randy Dunlap
0 siblings, 1 reply; 3+ messages in thread
From: Baran Tuna @ 2026-07-01 2:52 UTC (permalink / raw)
To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Jonathan Corbet, Shuah Khan, open list:DRM DRIVERS,
open list:DOCUMENTATION, open list
Cc: Baran Tuna
Fix minor spelling mistakes in GPU TODO section of documentation.
No functional changes.
Signed-off-by: Baran Tuna <barant@fastmail.com>
---
Documentation/gpu/todo.rst | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Documentation/gpu/todo.rst b/Documentation/gpu/todo.rst
index cdddf8db35f5..3b9999319829 100644
--- a/Documentation/gpu/todo.rst
+++ b/Documentation/gpu/todo.rst
@@ -55,7 +55,7 @@ There are still drivers that use drm_simple_display_pipe. The task here is to
convert them to use regular atomic helpers. Search for a driver that calls
drm_simple_display_pipe_init() and inline all helpers from drm_simple_kms_helper.c
into the driver, such that no simple-KMS interfaces are required. Please also
-rename all inlined fucntions according to driver conventions.
+rename all inlined functions according to driver conventions.
Contact: Thomas Zimmermann, respective driver maintainer
@@ -278,7 +278,7 @@ Various hold-ups:
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
+ 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.
@@ -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.
--
2.54.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] docs: Fix typos under GPU TODO
2026-07-01 2:52 [PATCH] docs: Fix typos under GPU TODO Baran Tuna
@ 2026-07-01 3:47 ` Randy Dunlap
2026-07-01 12:42 ` [PATCH v2] " Baran Tuna
0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2026-07-01 3:47 UTC (permalink / raw)
To: Baran Tuna, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Simona Vetter, Jonathan Corbet, Shuah Khan,
dri-devel, linux-doc, linux-kernel
On June 30, 2026 7:52:33 PM PDT, Baran Tuna <barant@fastmail.com> wrote:
>Fix minor spelling mistakes in GPU TODO section of documentation.
>No functional changes.
>
>Signed-off-by: Baran Tuna <barant@fastmail.com>
>---
> Documentation/gpu/todo.rst | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
>diff --git a/Documentation/gpu/todo.rst b/Documentation/gpu/todo.rst
>index cdddf8db35f5..3b9999319829 100644
>--- a/Documentation/gpu/todo.rst
>+++ b/Documentation/gpu/todo.rst
>@@ -55,7 +55,7 @@ There are still drivers that use drm_simple_display_pipe. The task here is to
> convert them to use regular atomic helpers. Search for a driver that calls
> drm_simple_display_pipe_init() and inline all helpers from drm_simple_kms_helper.c
> into the driver, such that no simple-KMS interfaces are required. Please also
>-rename all inlined fucntions according to driver conventions.
>+rename all inlined functions according to driver conventions.
>
> Contact: Thomas Zimmermann, respective driver maintainer
>
>@@ -278,7 +278,7 @@ Various hold-ups:
> valid formats for atomic drivers.
>
> - Many drivers subclass drm_framebuffer, we'd need a embedding compatible
an embedding
Otherwise LGTM.
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
>- version of the varios drm_gem_fb_create functions. Maybe called
>+ 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.
>@@ -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.
~Randy
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v2] docs: Fix typos under GPU TODO
2026-07-01 3:47 ` Randy Dunlap
@ 2026-07-01 12:42 ` Baran Tuna
0 siblings, 0 replies; 3+ messages in thread
From: Baran Tuna @ 2026-07-01 12:42 UTC (permalink / raw)
To: David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Jonathan Corbet, Shuah Khan,
open list:DRM DRIVERS, open list:DOCUMENTATION, open list
Cc: Baran Tuna, Randy Dunlap
Fix minor spelling mistakes in GPU TODO section of documentation.
No functional changes.
Signed-off-by: Baran Tuna <barant@fastmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
---
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 cdddf8db35f5..b8c01e3fb655 100644
--- a/Documentation/gpu/todo.rst
+++ b/Documentation/gpu/todo.rst
@@ -55,7 +55,7 @@ There are still drivers that use drm_simple_display_pipe. The task here is to
convert them to use regular atomic helpers. Search for a driver that calls
drm_simple_display_pipe_init() and inline all helpers from drm_simple_kms_helper.c
into the driver, such that no simple-KMS interfaces are required. Please also
-rename all inlined fucntions according to driver conventions.
+rename all inlined functions according to driver conventions.
Contact: Thomas Zimmermann, respective driver maintainer
@@ -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.
@@ -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.
--
2.54.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-01 12:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-01 2:52 [PATCH] docs: Fix typos under GPU TODO Baran Tuna
2026-07-01 3:47 ` Randy Dunlap
2026-07-01 12:42 ` [PATCH v2] " Baran Tuna
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox