Kernel-Janitors Archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] drm/panthor: Fix spelling mistake "readyness" -> "readiness"
@ 2024-03-26 10:02 Colin Ian King
  2024-03-26 10:14 ` Liviu Dudau
  2024-03-26 10:59 ` Boris Brezillon
  0 siblings, 2 replies; 4+ messages in thread
From: Colin Ian King @ 2024-03-26 10:02 UTC (permalink / raw
  To: Boris Brezillon, Steven Price, Liviu Dudau, Maarten Lankhorst,
	Maxime Ripard, Thomas Zimmermann, David Airlie, Daniel Vetter,
	dri-devel
  Cc: kernel-janitors, linux-kernel

There is a spelling mistake in a drm_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/gpu/drm/panthor/panthor_gpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/panthor/panthor_gpu.c b/drivers/gpu/drm/panthor/panthor_gpu.c
index 6dbbc4cfbe7e..0f7c962440d3 100644
--- a/drivers/gpu/drm/panthor/panthor_gpu.c
+++ b/drivers/gpu/drm/panthor/panthor_gpu.c
@@ -333,7 +333,7 @@ int panthor_gpu_block_power_on(struct panthor_device *ptdev,
 						 val, (mask32 & val) == mask32,
 						 100, timeout_us);
 		if (ret) {
-			drm_err(&ptdev->base, "timeout waiting on %s:%llx readyness",
+			drm_err(&ptdev->base, "timeout waiting on %s:%llx readiness",
 				blk_name, mask);
 			return ret;
 		}
-- 
2.39.2


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

* Re: [PATCH][next] drm/panthor: Fix spelling mistake "readyness" -> "readiness"
  2024-03-26 10:02 [PATCH][next] drm/panthor: Fix spelling mistake "readyness" -> "readiness" Colin Ian King
@ 2024-03-26 10:14 ` Liviu Dudau
  2024-03-26 10:26   ` Boris Brezillon
  2024-03-26 10:59 ` Boris Brezillon
  1 sibling, 1 reply; 4+ messages in thread
From: Liviu Dudau @ 2024-03-26 10:14 UTC (permalink / raw
  To: Colin Ian King
  Cc: Boris Brezillon, Steven Price, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, David Airlie, Daniel Vetter, dri-devel,
	kernel-janitors, linux-kernel

On Tue, Mar 26, 2024 at 10:02:19AM +0000, Colin Ian King wrote:
> There is a spelling mistake in a drm_err message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Acked-by: Liviu Dudau <liviu.dudau@arm.com>

Boris, can you also pick this one up when you're pushing your kernel doc fix?

Best regards,
Liviu

> ---
>  drivers/gpu/drm/panthor/panthor_gpu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/panthor/panthor_gpu.c b/drivers/gpu/drm/panthor/panthor_gpu.c
> index 6dbbc4cfbe7e..0f7c962440d3 100644
> --- a/drivers/gpu/drm/panthor/panthor_gpu.c
> +++ b/drivers/gpu/drm/panthor/panthor_gpu.c
> @@ -333,7 +333,7 @@ int panthor_gpu_block_power_on(struct panthor_device *ptdev,
>  						 val, (mask32 & val) == mask32,
>  						 100, timeout_us);
>  		if (ret) {
> -			drm_err(&ptdev->base, "timeout waiting on %s:%llx readyness",
> +			drm_err(&ptdev->base, "timeout waiting on %s:%llx readiness",
>  				blk_name, mask);
>  			return ret;
>  		}
> -- 
> 2.39.2
> 

-- 
====================
| I would like to |
| fix the world,  |
| but they're not |
| giving me the   |
 \ source code!  /
  ---------------
    ¯\_(ツ)_/¯

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

* Re: [PATCH][next] drm/panthor: Fix spelling mistake "readyness" -> "readiness"
  2024-03-26 10:14 ` Liviu Dudau
@ 2024-03-26 10:26   ` Boris Brezillon
  0 siblings, 0 replies; 4+ messages in thread
From: Boris Brezillon @ 2024-03-26 10:26 UTC (permalink / raw
  To: Liviu Dudau
  Cc: Colin Ian King, Steven Price, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, David Airlie, Daniel Vetter, dri-devel,
	kernel-janitors, linux-kernel

On Tue, 26 Mar 2024 10:14:37 +0000
Liviu Dudau <liviu.dudau@arm.com> wrote:

> On Tue, Mar 26, 2024 at 10:02:19AM +0000, Colin Ian King wrote:
> > There is a spelling mistake in a drm_err message. Fix it.
> > 
> > Signed-off-by: Colin Ian King <colin.i.king@gmail.com>  
> 
> Acked-by: Liviu Dudau <liviu.dudau@arm.com>
> 
> Boris, can you also pick this one up when you're pushing your kernel doc fix?

Sure, I will.

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

* Re: [PATCH][next] drm/panthor: Fix spelling mistake "readyness" -> "readiness"
  2024-03-26 10:02 [PATCH][next] drm/panthor: Fix spelling mistake "readyness" -> "readiness" Colin Ian King
  2024-03-26 10:14 ` Liviu Dudau
@ 2024-03-26 10:59 ` Boris Brezillon
  1 sibling, 0 replies; 4+ messages in thread
From: Boris Brezillon @ 2024-03-26 10:59 UTC (permalink / raw
  To: Colin Ian King
  Cc: Steven Price, Liviu Dudau, Maarten Lankhorst, Maxime Ripard,
	Thomas Zimmermann, David Airlie, Daniel Vetter, dri-devel,
	kernel-janitors, linux-kernel

On Tue, 26 Mar 2024 10:02:19 +0000
Colin Ian King <colin.i.king@gmail.com> wrote:

> There is a spelling mistake in a drm_err message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Queued to drm-misc-next.

> ---
>  drivers/gpu/drm/panthor/panthor_gpu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/panthor/panthor_gpu.c b/drivers/gpu/drm/panthor/panthor_gpu.c
> index 6dbbc4cfbe7e..0f7c962440d3 100644
> --- a/drivers/gpu/drm/panthor/panthor_gpu.c
> +++ b/drivers/gpu/drm/panthor/panthor_gpu.c
> @@ -333,7 +333,7 @@ int panthor_gpu_block_power_on(struct panthor_device *ptdev,
>  						 val, (mask32 & val) == mask32,
>  						 100, timeout_us);
>  		if (ret) {
> -			drm_err(&ptdev->base, "timeout waiting on %s:%llx readyness",
> +			drm_err(&ptdev->base, "timeout waiting on %s:%llx readiness",
>  				blk_name, mask);
>  			return ret;
>  		}


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

end of thread, other threads:[~2024-03-26 10:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-26 10:02 [PATCH][next] drm/panthor: Fix spelling mistake "readyness" -> "readiness" Colin Ian King
2024-03-26 10:14 ` Liviu Dudau
2024-03-26 10:26   ` Boris Brezillon
2024-03-26 10:59 ` Boris Brezillon

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 read-only IMAP folder(s) and NNTP newsgroup(s).