dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][drm-next] drm/selftest: fix spelling mistake "dimention" -> "dimenstion"
@ 2018-12-10  9:26 Colin King
  2018-12-10  9:30 ` Colin Ian King
  2018-12-10 12:50 ` Thomas Hellstrom
  0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2018-12-10  9:26 UTC (permalink / raw)
  To: David Airlie, Thomas Hellstrom, Deepak Rawat, Daniel Vetter, dri-devel
  Cc: kernel-janitors, linux-kernel

From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a pr_err message, fix this.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/gpu/drm/selftests/test-drm_damage_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/selftests/test-drm_damage_helper.c b/drivers/gpu/drm/selftests/test-drm_damage_helper.c
index a2f753205a3e..9d2bcdf8bc29 100644
--- a/drivers/gpu/drm/selftests/test-drm_damage_helper.c
+++ b/drivers/gpu/drm/selftests/test-drm_damage_helper.c
@@ -53,7 +53,7 @@ static bool check_damage_clip(struct drm_plane_state *state, struct drm_rect *r,
 	int src_y2 = (state->src.y2 >> 16) + !!(state->src.y2 & 0xFFFF);
 
 	if (x1 >= x2 || y1 >= y2) {
-		pr_err("Cannot have damage clip with no dimention.\n");
+		pr_err("Cannot have damage clip with no dimension.\n");
 		return false;
 	}
 
-- 
2.19.1

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

* Re: [PATCH][drm-next] drm/selftest: fix spelling mistake "dimention" -> "dimenstion"
  2018-12-10  9:26 [PATCH][drm-next] drm/selftest: fix spelling mistake "dimention" -> "dimenstion" Colin King
@ 2018-12-10  9:30 ` Colin Ian King
  2018-12-10 12:50 ` Thomas Hellstrom
  1 sibling, 0 replies; 3+ messages in thread
From: Colin Ian King @ 2018-12-10  9:30 UTC (permalink / raw)
  To: David Airlie, Thomas Hellstrom, Deepak Rawat, Daniel Vetter, dri-devel
  Cc: kernel-janitors, linux-kernel

Ooops, $SUBJECT should be:

"drm/selftest: fix spelling mistake "dimention" -> "dimension"

On 10/12/2018 09:26, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a pr_err message, fix this.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/gpu/drm/selftests/test-drm_damage_helper.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/selftests/test-drm_damage_helper.c b/drivers/gpu/drm/selftests/test-drm_damage_helper.c
> index a2f753205a3e..9d2bcdf8bc29 100644
> --- a/drivers/gpu/drm/selftests/test-drm_damage_helper.c
> +++ b/drivers/gpu/drm/selftests/test-drm_damage_helper.c
> @@ -53,7 +53,7 @@ static bool check_damage_clip(struct drm_plane_state *state, struct drm_rect *r,
>  	int src_y2 = (state->src.y2 >> 16) + !!(state->src.y2 & 0xFFFF);
>  
>  	if (x1 >= x2 || y1 >= y2) {
> -		pr_err("Cannot have damage clip with no dimention.\n");
> +		pr_err("Cannot have damage clip with no dimension.\n");
>  		return false;
>  	}
>  
> 

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

* Re: [PATCH][drm-next] drm/selftest: fix spelling mistake "dimention" -> "dimenstion"
  2018-12-10  9:26 [PATCH][drm-next] drm/selftest: fix spelling mistake "dimention" -> "dimenstion" Colin King
  2018-12-10  9:30 ` Colin Ian King
@ 2018-12-10 12:50 ` Thomas Hellstrom
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Hellstrom @ 2018-12-10 12:50 UTC (permalink / raw)
  To: dri-devel, colin.king, Deepak Singh Rawat, daniel.vetter, airlied
  Cc: kernel-janitors, linux-kernel

On Mon, 2018-12-10 at 09:26 +0000, Colin King wrote:

Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>

I'll take this in the next pull request unless I'm told otherwise.

/Thomas

> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a spelling mistake in a pr_err message, fix this.
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  drivers/gpu/drm/selftests/test-drm_damage_helper.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/selftests/test-drm_damage_helper.c
> b/drivers/gpu/drm/selftests/test-drm_damage_helper.c
> index a2f753205a3e..9d2bcdf8bc29 100644
> --- a/drivers/gpu/drm/selftests/test-drm_damage_helper.c
> +++ b/drivers/gpu/drm/selftests/test-drm_damage_helper.c
> @@ -53,7 +53,7 @@ static bool check_damage_clip(struct
> drm_plane_state *state, struct drm_rect *r,
>  	int src_y2 = (state->src.y2 >> 16) + !!(state->src.y2 &
> 0xFFFF);
>  
>  	if (x1 >= x2 || y1 >= y2) {
> -		pr_err("Cannot have damage clip with no dimention.\n");
> +		pr_err("Cannot have damage clip with no dimension.\n");
>  		return false;
>  	}
>  
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2018-12-10 12:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-10  9:26 [PATCH][drm-next] drm/selftest: fix spelling mistake "dimention" -> "dimenstion" Colin King
2018-12-10  9:30 ` Colin Ian King
2018-12-10 12:50 ` Thomas Hellstrom

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