All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: Tweak drm_encoder_helper_funcs.enable kerneldoc
@ 2019-06-12 15:00 Sean Paul
  2019-06-12 15:09 ` Sam Ravnborg
  0 siblings, 1 reply; 3+ messages in thread
From: Sean Paul @ 2019-06-12 15:00 UTC (permalink / raw)
  To: dri-devel; +Cc: Maxime Ripard, Sean Paul, David Airlie, Sean Paul, Sam Ravnborg

From: Sean Paul <seanpaul@chromium.org>

I copied the kerneldoc for encoder_funcs.atomic_enable from encoder_funcs.enable
in a recent patch [1]. Sam rightly pointed out in the review that "for symmetry
with" text is awkward [2]. So here's a patch to fix up the source of the awkward
language.

[1] https://patchwork.freedesktop.org/patch/msgid/20190611160844.257498-2-sean@poorly.run
[2] https://patchwork.freedesktop.org/patch/msgid/20190611185352.GA16305@ravnborg.org

Suggested-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
---
 include/drm/drm_modeset_helper_vtables.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/drm/drm_modeset_helper_vtables.h b/include/drm/drm_modeset_helper_vtables.h
index f9c94c2a13646..df80131bb10fc 100644
--- a/include/drm/drm_modeset_helper_vtables.h
+++ b/include/drm/drm_modeset_helper_vtables.h
@@ -719,11 +719,11 @@ struct drm_encoder_helper_funcs {
 	 * hooks and call them from CRTC's callback by looping over all encoders
 	 * connected to it using for_each_encoder_on_crtc().
 	 *
-	 * This hook is used only by atomic helpers, for symmetry with @disable.
-	 * Atomic drivers don't need to implement it if there's no need to
-	 * enable anything at the encoder level. To ensure that runtime PM handling
-	 * (using either DPMS or the new "ACTIVE" property) works
-	 * @enable must be the inverse of @disable for atomic drivers.
+	 * This hook is only used by atomic helpers, it is the opposite of
+	 * @disable. Atomic drivers don't need to implement it if there's no
+	 * need to enable anything at the encoder level. To ensure that
+	 * runtime PM handling (using either DPMS or the new "ACTIVE" property)
+	 * works @enable must be the inverse of @disable for atomic drivers.
 	 */
 	void (*enable)(struct drm_encoder *encoder);
 
-- 
Sean Paul, Software Engineer, Google / Chromium OS

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] drm: Tweak drm_encoder_helper_funcs.enable kerneldoc
  2019-06-12 15:00 [PATCH] drm: Tweak drm_encoder_helper_funcs.enable kerneldoc Sean Paul
@ 2019-06-12 15:09 ` Sam Ravnborg
  2019-06-12 15:46   ` Sean Paul
  0 siblings, 1 reply; 3+ messages in thread
From: Sam Ravnborg @ 2019-06-12 15:09 UTC (permalink / raw)
  To: Sean Paul; +Cc: Maxime Ripard, dri-devel, David Airlie, Sean Paul

On Wed, Jun 12, 2019 at 11:00:34AM -0400, Sean Paul wrote:
> From: Sean Paul <seanpaul@chromium.org>
> 
> I copied the kerneldoc for encoder_funcs.atomic_enable from encoder_funcs.enable
> in a recent patch [1]. Sam rightly pointed out in the review that "for symmetry
> with" text is awkward [2]. So here's a patch to fix up the source of the awkward
> language.

Looks good.
> 
> [1] https://patchwork.freedesktop.org/patch/msgid/20190611160844.257498-2-sean@poorly.run
> [2] https://patchwork.freedesktop.org/patch/msgid/20190611185352.GA16305@ravnborg.org
> 
> Suggested-by: Sam Ravnborg <sam@ravnborg.org>
> Signed-off-by: Sean Paul <seanpaul@chromium.org>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>

> ---
>  include/drm/drm_modeset_helper_vtables.h | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/include/drm/drm_modeset_helper_vtables.h b/include/drm/drm_modeset_helper_vtables.h
> index f9c94c2a13646..df80131bb10fc 100644
> --- a/include/drm/drm_modeset_helper_vtables.h
> +++ b/include/drm/drm_modeset_helper_vtables.h
> @@ -719,11 +719,11 @@ struct drm_encoder_helper_funcs {
>  	 * hooks and call them from CRTC's callback by looping over all encoders
>  	 * connected to it using for_each_encoder_on_crtc().
>  	 *
> -	 * This hook is used only by atomic helpers, for symmetry with @disable.
> -	 * Atomic drivers don't need to implement it if there's no need to
> -	 * enable anything at the encoder level. To ensure that runtime PM handling
> -	 * (using either DPMS or the new "ACTIVE" property) works
> -	 * @enable must be the inverse of @disable for atomic drivers.
> +	 * This hook is only used by atomic helpers, it is the opposite of
> +	 * @disable. Atomic drivers don't need to implement it if there's no
> +	 * need to enable anything at the encoder level. To ensure that
> +	 * runtime PM handling (using either DPMS or the new "ACTIVE" property)
> +	 * works @enable must be the inverse of @disable for atomic drivers.
>  	 */
>  	void (*enable)(struct drm_encoder *encoder);
>  
> -- 
> Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
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

* Re: [PATCH] drm: Tweak drm_encoder_helper_funcs.enable kerneldoc
  2019-06-12 15:09 ` Sam Ravnborg
@ 2019-06-12 15:46   ` Sean Paul
  0 siblings, 0 replies; 3+ messages in thread
From: Sean Paul @ 2019-06-12 15:46 UTC (permalink / raw)
  To: Sam Ravnborg; +Cc: Maxime Ripard, dri-devel, David Airlie, Sean Paul, Sean Paul

On Wed, Jun 12, 2019 at 05:09:27PM +0200, Sam Ravnborg wrote:
> On Wed, Jun 12, 2019 at 11:00:34AM -0400, Sean Paul wrote:
> > From: Sean Paul <seanpaul@chromium.org>
> > 
> > I copied the kerneldoc for encoder_funcs.atomic_enable from encoder_funcs.enable
> > in a recent patch [1]. Sam rightly pointed out in the review that "for symmetry
> > with" text is awkward [2]. So here's a patch to fix up the source of the awkward
> > language.
> 
> Looks good.
> > 
> > [1] https://patchwork.freedesktop.org/patch/msgid/20190611160844.257498-2-sean@poorly.run
> > [2] https://patchwork.freedesktop.org/patch/msgid/20190611185352.GA16305@ravnborg.org
> > 
> > Suggested-by: Sam Ravnborg <sam@ravnborg.org>
> > Signed-off-by: Sean Paul <seanpaul@chromium.org>
> Reviewed-by: Sam Ravnborg <sam@ravnborg.org>

Applied to drm-misc-next with your R-b, thanks!

Sean

> 
> > ---
> >  include/drm/drm_modeset_helper_vtables.h | 10 +++++-----
> >  1 file changed, 5 insertions(+), 5 deletions(-)
> > 
> > diff --git a/include/drm/drm_modeset_helper_vtables.h b/include/drm/drm_modeset_helper_vtables.h
> > index f9c94c2a13646..df80131bb10fc 100644
> > --- a/include/drm/drm_modeset_helper_vtables.h
> > +++ b/include/drm/drm_modeset_helper_vtables.h
> > @@ -719,11 +719,11 @@ struct drm_encoder_helper_funcs {
> >  	 * hooks and call them from CRTC's callback by looping over all encoders
> >  	 * connected to it using for_each_encoder_on_crtc().
> >  	 *
> > -	 * This hook is used only by atomic helpers, for symmetry with @disable.
> > -	 * Atomic drivers don't need to implement it if there's no need to
> > -	 * enable anything at the encoder level. To ensure that runtime PM handling
> > -	 * (using either DPMS or the new "ACTIVE" property) works
> > -	 * @enable must be the inverse of @disable for atomic drivers.
> > +	 * This hook is only used by atomic helpers, it is the opposite of
> > +	 * @disable. Atomic drivers don't need to implement it if there's no
> > +	 * need to enable anything at the encoder level. To ensure that
> > +	 * runtime PM handling (using either DPMS or the new "ACTIVE" property)
> > +	 * works @enable must be the inverse of @disable for atomic drivers.
> >  	 */
> >  	void (*enable)(struct drm_encoder *encoder);
> >  
> > -- 
> > Sean Paul, Software Engineer, Google / Chromium OS

-- 
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
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:[~2019-06-12 15:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-12 15:00 [PATCH] drm: Tweak drm_encoder_helper_funcs.enable kerneldoc Sean Paul
2019-06-12 15:09 ` Sam Ravnborg
2019-06-12 15:46   ` Sean Paul

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.