LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] drm/drm_plane.h: fix a typo: not -> note
@ 2021-11-08 13:20 Sui Jingfeng
2021-11-08 14:28 ` Thomas Zimmermann
0 siblings, 1 reply; 5+ messages in thread
From: Sui Jingfeng @ 2021-11-08 13:20 UTC (permalink / raw)
To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
Cc: dri-devel, linux-kernel, suijingfeng
From: suijingfeng <suijingfeng@loongson.cn>
Signed-off-by: suijingfeng <suijingfeng@loongson.cn>
---
include/drm/drm_plane.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
index fed97e35626f..0c1102dc4d88 100644
--- a/include/drm/drm_plane.h
+++ b/include/drm/drm_plane.h
@@ -43,7 +43,7 @@ enum drm_scaling_filter {
/**
* struct drm_plane_state - mutable plane state
*
- * Please not that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
+ * Please note that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
* @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the
* raw coordinates provided by userspace. Drivers should use
* drm_atomic_helper_check_plane_state() and only use the derived rectangles in
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/drm_plane.h: fix a typo: not -> note
2021-11-08 13:20 [PATCH] drm/drm_plane.h: fix a typo: not -> note Sui Jingfeng
@ 2021-11-08 14:28 ` Thomas Zimmermann
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Zimmermann @ 2021-11-08 14:28 UTC (permalink / raw)
To: Sui Jingfeng, Maarten Lankhorst, Maxime Ripard, David Airlie,
Daniel Vetter
Cc: dri-devel, linux-kernel, suijingfeng
[-- Attachment #1.1: Type: text/plain, Size: 1445 bytes --]
Hi
Am 08.11.21 um 14:20 schrieb Sui Jingfeng:
> From: suijingfeng <suijingfeng@loongson.cn>
>
> Signed-off-by: suijingfeng <suijingfeng@loongson.cn>
This was fixed a while ago. [1] If you want to work on the DRM
framework, please use the latest repository from drm-tip. [2]
Best regards
Thomas
[1]
https://cgit.freedesktop.org/drm/drm-misc/commit/?id=4087d2fb286c85a1bde72e7523c496080ef39035
[2] https://cgit.freedesktop.org/drm/drm-tip/
> ---
> include/drm/drm_plane.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
> index fed97e35626f..0c1102dc4d88 100644
> --- a/include/drm/drm_plane.h
> +++ b/include/drm/drm_plane.h
> @@ -43,7 +43,7 @@ enum drm_scaling_filter {
> /**
> * struct drm_plane_state - mutable plane state
> *
> - * Please not that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
> + * Please note that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
> * @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the
> * raw coordinates provided by userspace. Drivers should use
> * drm_atomic_helper_check_plane_state() and only use the derived rectangles in
>
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Ivo Totev
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/drm_plane.h: fix a typo: not -> note
2021-11-08 5:16 suijingfeng
@ 2021-11-08 15:19 ` Daniel Vetter
0 siblings, 0 replies; 5+ messages in thread
From: Daniel Vetter @ 2021-11-08 15:19 UTC (permalink / raw)
To: suijingfeng
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter, 15330273260, dri-devel,
linux-kernel
On Mon, Nov 08, 2021 at 01:16:25PM +0800, suijingfeng wrote:
> Signed-off-by: suijingfeng <suijingfeng@loongson.cn>
Merged into drm-misc-next-fixes for 5.16 merge window.
-Daniel
> ---
> include/drm/drm_plane.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
> index fed97e35626f..0c1102dc4d88 100644
> --- a/include/drm/drm_plane.h
> +++ b/include/drm/drm_plane.h
> @@ -43,7 +43,7 @@ enum drm_scaling_filter {
> /**
> * struct drm_plane_state - mutable plane state
> *
> - * Please not that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
> + * Please note that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
> * @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the
> * raw coordinates provided by userspace. Drivers should use
> * drm_atomic_helper_check_plane_state() and only use the derived rectangles in
> --
> 2.25.1
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] drm/drm_plane.h: fix a typo: not -> note
@ 2021-11-08 5:16 suijingfeng
2021-11-08 15:19 ` Daniel Vetter
0 siblings, 1 reply; 5+ messages in thread
From: suijingfeng @ 2021-11-08 5:16 UTC (permalink / raw)
To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
Cc: 15330273260, dri-devel, linux-kernel
Signed-off-by: suijingfeng <suijingfeng@loongson.cn>
---
include/drm/drm_plane.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
index fed97e35626f..0c1102dc4d88 100644
--- a/include/drm/drm_plane.h
+++ b/include/drm/drm_plane.h
@@ -43,7 +43,7 @@ enum drm_scaling_filter {
/**
* struct drm_plane_state - mutable plane state
*
- * Please not that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
+ * Please note that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
* @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the
* raw coordinates provided by userspace. Drivers should use
* drm_atomic_helper_check_plane_state() and only use the derived rectangles in
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] drm/drm_plane.h: fix a typo: not -> note
@ 2021-11-08 4:10 suijingfeng
0 siblings, 0 replies; 5+ messages in thread
From: suijingfeng @ 2021-11-08 4:10 UTC (permalink / raw)
To: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
Cc: dri-devel, linux-kernel
Signed-off-by: suijingfeng <suijingfeng@loongson.cn>
---
include/drm/drm_plane.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_plane.h b/include/drm/drm_plane.h
index fed97e35626f..0c1102dc4d88 100644
--- a/include/drm/drm_plane.h
+++ b/include/drm/drm_plane.h
@@ -43,7 +43,7 @@ enum drm_scaling_filter {
/**
* struct drm_plane_state - mutable plane state
*
- * Please not that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
+ * Please note that the destination coordinates @crtc_x, @crtc_y, @crtc_h and
* @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the
* raw coordinates provided by userspace. Drivers should use
* drm_atomic_helper_check_plane_state() and only use the derived rectangles in
--
2.25.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-11-08 15:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-08 13:20 [PATCH] drm/drm_plane.h: fix a typo: not -> note Sui Jingfeng
2021-11-08 14:28 ` Thomas Zimmermann
-- strict thread matches above, loose matches on Subject: below --
2021-11-08 5:16 suijingfeng
2021-11-08 15:19 ` Daniel Vetter
2021-11-08 4:10 suijingfeng
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).