linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/display: fix typo
@ 2024-01-19 10:22 Oleksandr Natalenko
  2024-01-20  6:44 ` Randy Dunlap
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Oleksandr Natalenko @ 2024-01-19 10:22 UTC (permalink / raw)
  To: linux-kernel
  Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
	David Airlie, Daniel Vetter, dri-devel

While studying the code I've bumped into a small typo within the
kernel-doc for two functions, apparently, due to copy-paste.

This commit fixes "sizo" word to be "size".

Signed-off-by: Oleksandr Natalenko <oleksandr@natalenko.name>
---
 drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
index bd61e20770a5b..14a2a8473682b 100644
--- a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
+++ b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
@@ -52,7 +52,7 @@
  * @adapter: I2C adapter for the DDC bus
  * @offset: register offset
  * @buffer: buffer for return data
- * @size: sizo of the buffer
+ * @size: size of the buffer
  *
  * Reads @size bytes from the DP dual mode adaptor registers
  * starting at @offset.
@@ -116,7 +116,7 @@ EXPORT_SYMBOL(drm_dp_dual_mode_read);
  * @adapter: I2C adapter for the DDC bus
  * @offset: register offset
  * @buffer: buffer for write data
- * @size: sizo of the buffer
+ * @size: size of the buffer
  *
  * Writes @size bytes to the DP dual mode adaptor registers
  * starting at @offset.
-- 
2.43.0


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

* Re: [PATCH] drm/display: fix typo
  2024-01-19 10:22 [PATCH] drm/display: fix typo Oleksandr Natalenko
@ 2024-01-20  6:44 ` Randy Dunlap
  2024-03-31 19:10   ` Oleksandr Natalenko
  2024-04-01 19:33 ` Dmitry Baryshkov
  2024-04-01 19:37 ` Dmitry Baryshkov
  2 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2024-01-20  6:44 UTC (permalink / raw)
  To: Oleksandr Natalenko, linux-kernel
  Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
	David Airlie, Daniel Vetter, dri-devel



On 1/19/24 02:22, Oleksandr Natalenko wrote:
> While studying the code I've bumped into a small typo within the
> kernel-doc for two functions, apparently, due to copy-paste.
> 
> This commit fixes "sizo" word to be "size".
> 
> Signed-off-by: Oleksandr Natalenko <oleksandr@natalenko.name>

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

Thanks.

> ---
>  drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> index bd61e20770a5b..14a2a8473682b 100644
> --- a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> +++ b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> @@ -52,7 +52,7 @@
>   * @adapter: I2C adapter for the DDC bus
>   * @offset: register offset
>   * @buffer: buffer for return data
> - * @size: sizo of the buffer
> + * @size: size of the buffer
>   *
>   * Reads @size bytes from the DP dual mode adaptor registers
>   * starting at @offset.
> @@ -116,7 +116,7 @@ EXPORT_SYMBOL(drm_dp_dual_mode_read);
>   * @adapter: I2C adapter for the DDC bus
>   * @offset: register offset
>   * @buffer: buffer for write data
> - * @size: sizo of the buffer
> + * @size: size of the buffer
>   *
>   * Writes @size bytes to the DP dual mode adaptor registers
>   * starting at @offset.

-- 
#Randy

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

* Re: [PATCH] drm/display: fix typo
  2024-01-20  6:44 ` Randy Dunlap
@ 2024-03-31 19:10   ` Oleksandr Natalenko
  0 siblings, 0 replies; 5+ messages in thread
From: Oleksandr Natalenko @ 2024-03-31 19:10 UTC (permalink / raw)
  To: linux-kernel, Randy Dunlap
  Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
	David Airlie, Daniel Vetter, dri-devel

[-- Attachment #1: Type: text/plain, Size: 1634 bytes --]

On sobota 20. ledna 2024 7:44:45, CEST Randy Dunlap wrote:
> 
> On 1/19/24 02:22, Oleksandr Natalenko wrote:
> > While studying the code I've bumped into a small typo within the
> > kernel-doc for two functions, apparently, due to copy-paste.
> > 
> > This commit fixes "sizo" word to be "size".
> > 
> > Signed-off-by: Oleksandr Natalenko <oleksandr@natalenko.name>
> 
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> 
> Thanks.
> 
> > ---
> >  drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> > index bd61e20770a5b..14a2a8473682b 100644
> > --- a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> > +++ b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> > @@ -52,7 +52,7 @@
> >   * @adapter: I2C adapter for the DDC bus
> >   * @offset: register offset
> >   * @buffer: buffer for return data
> > - * @size: sizo of the buffer
> > + * @size: size of the buffer
> >   *
> >   * Reads @size bytes from the DP dual mode adaptor registers
> >   * starting at @offset.
> > @@ -116,7 +116,7 @@ EXPORT_SYMBOL(drm_dp_dual_mode_read);
> >   * @adapter: I2C adapter for the DDC bus
> >   * @offset: register offset
> >   * @buffer: buffer for write data
> > - * @size: sizo of the buffer
> > + * @size: size of the buffer
> >   *
> >   * Writes @size bytes to the DP dual mode adaptor registers
> >   * starting at @offset.
> 
> 

Gentle ping. I don't see this change in linux-next, so probably it got lost.

-- 
Oleksandr Natalenko (post-factum)

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] drm/display: fix typo
  2024-01-19 10:22 [PATCH] drm/display: fix typo Oleksandr Natalenko
  2024-01-20  6:44 ` Randy Dunlap
@ 2024-04-01 19:33 ` Dmitry Baryshkov
  2024-04-01 19:37 ` Dmitry Baryshkov
  2 siblings, 0 replies; 5+ messages in thread
From: Dmitry Baryshkov @ 2024-04-01 19:33 UTC (permalink / raw)
  To: Oleksandr Natalenko
  Cc: linux-kernel, Thomas Zimmermann, dri-devel, Maxime Ripard,
	Daniel Vetter, David Airlie

On Fri, 19 Jan 2024 at 12:31, Oleksandr Natalenko
<oleksandr@natalenko.name> wrote:
>
> While studying the code I've bumped into a small typo within the
> kernel-doc for two functions, apparently, due to copy-paste.
>
> This commit fixes "sizo" word to be "size".
>
> Signed-off-by: Oleksandr Natalenko <oleksandr@natalenko.name>
> ---
>  drivers/gpu/drm/display/drm_dp_dual_mode_helper.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Fixes: b3daa5ef52c2 ("drm: Add helper for DP++ adaptors")
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

>
> diff --git a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> index bd61e20770a5b..14a2a8473682b 100644
> --- a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> +++ b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
> @@ -52,7 +52,7 @@
>   * @adapter: I2C adapter for the DDC bus
>   * @offset: register offset
>   * @buffer: buffer for return data
> - * @size: sizo of the buffer
> + * @size: size of the buffer
>   *
>   * Reads @size bytes from the DP dual mode adaptor registers
>   * starting at @offset.
> @@ -116,7 +116,7 @@ EXPORT_SYMBOL(drm_dp_dual_mode_read);
>   * @adapter: I2C adapter for the DDC bus
>   * @offset: register offset
>   * @buffer: buffer for write data
> - * @size: sizo of the buffer
> + * @size: size of the buffer
>   *
>   * Writes @size bytes to the DP dual mode adaptor registers
>   * starting at @offset.
> --
> 2.43.0
>


-- 
With best wishes
Dmitry

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

* Re: [PATCH] drm/display: fix typo
  2024-01-19 10:22 [PATCH] drm/display: fix typo Oleksandr Natalenko
  2024-01-20  6:44 ` Randy Dunlap
  2024-04-01 19:33 ` Dmitry Baryshkov
@ 2024-04-01 19:37 ` Dmitry Baryshkov
  2 siblings, 0 replies; 5+ messages in thread
From: Dmitry Baryshkov @ 2024-04-01 19:37 UTC (permalink / raw)
  To: linux-kernel, Oleksandr Natalenko
  Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
	David Airlie, Daniel Vetter, dri-devel

On Fri, 19 Jan 2024 11:22:15 +0100, Oleksandr Natalenko wrote:
> While studying the code I've bumped into a small typo within the
> kernel-doc for two functions, apparently, due to copy-paste.
> 
> This commit fixes "sizo" word to be "size".
> 
> 

Applied to drm-misc-fixes, thanks!

[1/1] drm/display: fix typo
      commit: fddf09273807bf6e51537823aaae896e05f147f9

Best regards,
-- 
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

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

end of thread, other threads:[~2024-04-01 19:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-19 10:22 [PATCH] drm/display: fix typo Oleksandr Natalenko
2024-01-20  6:44 ` Randy Dunlap
2024-03-31 19:10   ` Oleksandr Natalenko
2024-04-01 19:33 ` Dmitry Baryshkov
2024-04-01 19:37 ` Dmitry Baryshkov

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).