All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PWM: drop legacy wrapper for changing polarity
@ 2018-10-15  8:21 Uwe Kleine-König
  2018-11-04 21:19 ` Uwe Kleine-König
  2018-12-12 10:56 ` [PATCH] PWM: drop legacy wrapper for changing polarity Thierry Reding
  0 siblings, 2 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2018-10-15  8:21 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

The API to configure a PWM using pwm_enable(), pwm_disable(),
pwm_config() and pwm_set_polarity() is superseeded by atomically setting
the parameters using pwm_apply_state(). To get forward with deprecating
the former set of functions use the opportunity that there is no current
user of pwm_set_polarity() and remove it.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 include/linux/pwm.h | 42 ------------------------------------------
 1 file changed, 42 deletions(-)

diff --git a/include/linux/pwm.h b/include/linux/pwm.h
index 56518adc31dd..d5199b507d79 100644
--- a/include/linux/pwm.h
+++ b/include/linux/pwm.h
@@ -348,42 +348,6 @@ static inline int pwm_config(struct pwm_device *pwm, int duty_ns,
 	return pwm_apply_state(pwm, &state);
 }
 
-/**
- * pwm_set_polarity() - configure the polarity of a PWM signal
- * @pwm: PWM device
- * @polarity: new polarity of the PWM signal
- *
- * Note that the polarity cannot be configured while the PWM device is
- * enabled.
- *
- * Returns: 0 on success or a negative error code on failure.
- */
-static inline int pwm_set_polarity(struct pwm_device *pwm,
-				   enum pwm_polarity polarity)
-{
-	struct pwm_state state;
-
-	if (!pwm)
-		return -EINVAL;
-
-	pwm_get_state(pwm, &state);
-	if (state.polarity == polarity)
-		return 0;
-
-	/*
-	 * Changing the polarity of a running PWM without adjusting the
-	 * dutycycle/period value is a bit risky (can introduce glitches).
-	 * Return -EBUSY in this case.
-	 * Note that this is allowed when using pwm_apply_state() because
-	 * the user specifies all the parameters.
-	 */
-	if (state.enabled)
-		return -EBUSY;
-
-	state.polarity = polarity;
-	return pwm_apply_state(pwm, &state);
-}
-
 /**
  * pwm_enable() - start a PWM output toggling
  * @pwm: PWM device
@@ -483,12 +447,6 @@ static inline int pwm_capture(struct pwm_device *pwm,
 	return -EINVAL;
 }
 
-static inline int pwm_set_polarity(struct pwm_device *pwm,
-				   enum pwm_polarity polarity)
-{
-	return -ENOTSUPP;
-}
-
 static inline int pwm_enable(struct pwm_device *pwm)
 {
 	return -EINVAL;
-- 
2.19.1

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-10-15  8:21 [PATCH] PWM: drop legacy wrapper for changing polarity Uwe Kleine-König
@ 2018-11-04 21:19 ` Uwe Kleine-König
  2018-11-20 16:57   ` Uwe Kleine-König
  2018-12-12 10:56 ` [PATCH] PWM: drop legacy wrapper for changing polarity Thierry Reding
  1 sibling, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2018-11-04 21:19 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

Hello Thierry,

On Mon, Oct 15, 2018 at 10:21:52AM +0200, Uwe Kleine-König wrote:
> The API to configure a PWM using pwm_enable(), pwm_disable(),
> pwm_config() and pwm_set_polarity() is superseeded by atomically setting
> the parameters using pwm_apply_state(). To get forward with deprecating
> the former set of functions use the opportunity that there is no current
> user of pwm_set_polarity() and remove it.
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

I think this patch is undisputed and wonder if it fell through the
cracks given that a patch sent later made it into your pwm/for-4.20-rc1
pull request.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-11-04 21:19 ` Uwe Kleine-König
@ 2018-11-20 16:57   ` Uwe Kleine-König
  2018-11-30  8:59     ` Uwe Kleine-König
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2018-11-20 16:57 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

On Sun, Nov 04, 2018 at 10:19:45PM +0100, Uwe Kleine-König wrote:
> Hello Thierry,
> 
> On Mon, Oct 15, 2018 at 10:21:52AM +0200, Uwe Kleine-König wrote:
> > The API to configure a PWM using pwm_enable(), pwm_disable(),
> > pwm_config() and pwm_set_polarity() is superseeded by atomically setting
> > the parameters using pwm_apply_state(). To get forward with deprecating
> > the former set of functions use the opportunity that there is no current
> > user of pwm_set_polarity() and remove it.
> > 
> > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> 
> I think this patch is undisputed and wonder if it fell through the
> cracks given that a patch sent later made it into your pwm/for-4.20-rc1
> pull request.

Now that you pushed out my lpc patch to your for-next branch (thanks!),
I wonder what you plan to do with this patch.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-11-20 16:57   ` Uwe Kleine-König
@ 2018-11-30  8:59     ` Uwe Kleine-König
  2018-12-06  9:20       ` Uwe Kleine-König
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2018-11-30  8:59 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

On Tue, Nov 20, 2018 at 05:57:58PM +0100, Uwe Kleine-König wrote:
> On Sun, Nov 04, 2018 at 10:19:45PM +0100, Uwe Kleine-König wrote:
> > Hello Thierry,
> > 
> > On Mon, Oct 15, 2018 at 10:21:52AM +0200, Uwe Kleine-König wrote:
> > > The API to configure a PWM using pwm_enable(), pwm_disable(),
> > > pwm_config() and pwm_set_polarity() is superseeded by atomically setting
> > > the parameters using pwm_apply_state(). To get forward with deprecating
> > > the former set of functions use the opportunity that there is no current
> > > user of pwm_set_polarity() and remove it.
> > > 
> > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > 
> > I think this patch is undisputed and wonder if it fell through the
> > cracks given that a patch sent later made it into your pwm/for-4.20-rc1
> > pull request.
> 
> Now that you pushed out my lpc patch to your for-next branch (thanks!),
> I wonder what you plan to do with this patch.

Ping! There are also a few other patches that didn't catch your
attention yet:

 - series for pwm-imx starting with
   "pwm: imx: remove if block where the condition is always wrong"
 - "pwm: don't use memcmp to compare struct state variables"
 - "pwm: drop per-chip dbg_show callback"

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-11-30  8:59     ` Uwe Kleine-König
@ 2018-12-06  9:20       ` Uwe Kleine-König
  2018-12-11 21:26         ` Uwe Kleine-König
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2018-12-06  9:20 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

Hello Thierry,

On Fri, Nov 30, 2018 at 09:59:42AM +0100, Uwe Kleine-König wrote:
> On Tue, Nov 20, 2018 at 05:57:58PM +0100, Uwe Kleine-König wrote:
> > On Sun, Nov 04, 2018 at 10:19:45PM +0100, Uwe Kleine-König wrote:
> > > Hello Thierry,
> > > 
> > > On Mon, Oct 15, 2018 at 10:21:52AM +0200, Uwe Kleine-König wrote:
> > > > The API to configure a PWM using pwm_enable(), pwm_disable(),
> > > > pwm_config() and pwm_set_polarity() is superseeded by atomically setting
> > > > the parameters using pwm_apply_state(). To get forward with deprecating
> > > > the former set of functions use the opportunity that there is no current
> > > > user of pwm_set_polarity() and remove it.
> > > > 
> > > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > > 
> > > I think this patch is undisputed and wonder if it fell through the
> > > cracks given that a patch sent later made it into your pwm/for-4.20-rc1
> > > pull request.
> > 
> > Now that you pushed out my lpc patch to your for-next branch (thanks!),
> > I wonder what you plan to do with this patch.
> 
> Ping! There are also a few other patches that didn't catch your
> attention yet:
> 
>  - series for pwm-imx starting with
>    "pwm: imx: remove if block where the condition is always wrong"
>  - "pwm: don't use memcmp to compare struct state variables"
>  - "pwm: drop per-chip dbg_show callback"

In a different thread it was suggested to resend the patches instead of
sending a ping. Should I do that? There are also

 - pwm: rearrange structures to group members by purpose
 - [RFC] Documentation: pwm: rework documentation for the framework

which didn't get any feedback from you yet.

There is a patchwork instance for the pwm list[1]. Are you using that?
It seems to be orphaned for some time but was already used this year.
Would you accept some help here? E.g. 

 - https://patchwork.ozlabs.org/patch/1001130/
   -> superseeded as there is a v3
 - https://patchwork.ozlabs.org/patch/993022/
   -> rejected is probably right
 - https://patchwork.ozlabs.org/patch/860540/
   -> applied as bb084c0f61d659f0e6d371b096e0e57998f191d6
 - https://patchwork.ozlabs.org/project/linux-pwm/list/?series=72798
   -> rejected

Best regards
Uwe

[1] https://patchwork.ozlabs.org/project/linux-pwm/list/

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-12-06  9:20       ` Uwe Kleine-König
@ 2018-12-11 21:26         ` Uwe Kleine-König
  2018-12-12 10:25           ` Thierry Reding
  0 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2018-12-11 21:26 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

On Thu, Dec 06, 2018 at 10:20:57AM +0100, Uwe Kleine-König wrote:
> Hello Thierry,
> 
> On Fri, Nov 30, 2018 at 09:59:42AM +0100, Uwe Kleine-König wrote:
> > On Tue, Nov 20, 2018 at 05:57:58PM +0100, Uwe Kleine-König wrote:
> > > On Sun, Nov 04, 2018 at 10:19:45PM +0100, Uwe Kleine-König wrote:
> > > > Hello Thierry,
> > > > 
> > > > On Mon, Oct 15, 2018 at 10:21:52AM +0200, Uwe Kleine-König wrote:
> > > > > The API to configure a PWM using pwm_enable(), pwm_disable(),
> > > > > pwm_config() and pwm_set_polarity() is superseeded by atomically setting
> > > > > the parameters using pwm_apply_state(). To get forward with deprecating
> > > > > the former set of functions use the opportunity that there is no current
> > > > > user of pwm_set_polarity() and remove it.
> > > > > 
> > > > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > > > 
> > > > I think this patch is undisputed and wonder if it fell through the
> > > > cracks given that a patch sent later made it into your pwm/for-4.20-rc1
> > > > pull request.
> > > 
> > > Now that you pushed out my lpc patch to your for-next branch (thanks!),
> > > I wonder what you plan to do with this patch.
> > 
> > Ping! There are also a few other patches that didn't catch your
> > attention yet:
> > 
> >  - series for pwm-imx starting with
> >    "pwm: imx: remove if block where the condition is always wrong"
> >  - "pwm: don't use memcmp to compare struct state variables"
> >  - "pwm: drop per-chip dbg_show callback"
> 
> In a different thread it was suggested to resend the patches instead of
> sending a ping. Should I do that? There are also
> 
>  - pwm: rearrange structures to group members by purpose
>  - [RFC] Documentation: pwm: rework documentation for the framework
> 
> which didn't get any feedback from you yet.
> 
> There is a patchwork instance for the pwm list[1]. Are you using that?
> It seems to be orphaned for some time but was already used this year.
> Would you accept some help here? E.g. 
> 
>  - https://patchwork.ozlabs.org/patch/1001130/
>    -> superseeded as there is a v3
>  - https://patchwork.ozlabs.org/patch/993022/
>    -> rejected is probably right
>  - https://patchwork.ozlabs.org/patch/860540/
>    -> applied as bb084c0f61d659f0e6d371b096e0e57998f191d6
>  - https://patchwork.ozlabs.org/project/linux-pwm/list/?series=72798
>    -> rejected

It's sad to not get any feedback from you, and I'm not the only one
waiting for a reply. Linux is at -rc6 and there is only a single patch
in your (visible) queue for the next merge window although there are
some patches that look ready for application on the list.

I guess it's lack of time that keeps you from caring more for the pwm
stuff. If you need help (e.g. by caring for the patchwork todo list) I'm
willing to spend some time. If it helps you I can also collect the
patches that I think are ok and provide a pull request to your tree.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-12-11 21:26         ` Uwe Kleine-König
@ 2018-12-12 10:25           ` Thierry Reding
  2018-12-12 10:59             ` Uwe Kleine-König
  2019-09-16 13:05             ` Offer to co-maintain drivers/pwm [Was: Re: [PATCH] PWM: drop legacy wrapper for changing polarity] Uwe Kleine-König
  0 siblings, 2 replies; 11+ messages in thread
From: Thierry Reding @ 2018-12-12 10:25 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

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

On Tue, Dec 11, 2018 at 10:26:58PM +0100, Uwe Kleine-König wrote:
> On Thu, Dec 06, 2018 at 10:20:57AM +0100, Uwe Kleine-König wrote:
> > Hello Thierry,
> > 
> > On Fri, Nov 30, 2018 at 09:59:42AM +0100, Uwe Kleine-König wrote:
> > > On Tue, Nov 20, 2018 at 05:57:58PM +0100, Uwe Kleine-König wrote:
> > > > On Sun, Nov 04, 2018 at 10:19:45PM +0100, Uwe Kleine-König wrote:
> > > > > Hello Thierry,
> > > > > 
> > > > > On Mon, Oct 15, 2018 at 10:21:52AM +0200, Uwe Kleine-König wrote:
> > > > > > The API to configure a PWM using pwm_enable(), pwm_disable(),
> > > > > > pwm_config() and pwm_set_polarity() is superseeded by atomically setting
> > > > > > the parameters using pwm_apply_state(). To get forward with deprecating
> > > > > > the former set of functions use the opportunity that there is no current
> > > > > > user of pwm_set_polarity() and remove it.
> > > > > > 
> > > > > > Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> > > > > 
> > > > > I think this patch is undisputed and wonder if it fell through the
> > > > > cracks given that a patch sent later made it into your pwm/for-4.20-rc1
> > > > > pull request.
> > > > 
> > > > Now that you pushed out my lpc patch to your for-next branch (thanks!),
> > > > I wonder what you plan to do with this patch.
> > > 
> > > Ping! There are also a few other patches that didn't catch your
> > > attention yet:
> > > 
> > >  - series for pwm-imx starting with
> > >    "pwm: imx: remove if block where the condition is always wrong"
> > >  - "pwm: don't use memcmp to compare struct state variables"
> > >  - "pwm: drop per-chip dbg_show callback"
> > 
> > In a different thread it was suggested to resend the patches instead of
> > sending a ping. Should I do that? There are also
> > 
> >  - pwm: rearrange structures to group members by purpose
> >  - [RFC] Documentation: pwm: rework documentation for the framework
> > 
> > which didn't get any feedback from you yet.
> > 
> > There is a patchwork instance for the pwm list[1]. Are you using that?
> > It seems to be orphaned for some time but was already used this year.
> > Would you accept some help here? E.g. 
> > 
> >  - https://patchwork.ozlabs.org/patch/1001130/
> >    -> superseeded as there is a v3
> >  - https://patchwork.ozlabs.org/patch/993022/
> >    -> rejected is probably right
> >  - https://patchwork.ozlabs.org/patch/860540/
> >    -> applied as bb084c0f61d659f0e6d371b096e0e57998f191d6
> >  - https://patchwork.ozlabs.org/project/linux-pwm/list/?series=72798
> >    -> rejected
> 
> It's sad to not get any feedback from you, and I'm not the only one
> waiting for a reply. Linux is at -rc6 and there is only a single patch
> in your (visible) queue for the next merge window although there are
> some patches that look ready for application on the list.
> 
> I guess it's lack of time that keeps you from caring more for the pwm
> stuff. If you need help (e.g. by caring for the patchwork todo list) I'm
> willing to spend some time. If it helps you I can also collect the
> patches that I think are ok and provide a pull request to your tree.

I certainly wouldn't mind a little help. Reviewing patches will
definitely help move things along.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-10-15  8:21 [PATCH] PWM: drop legacy wrapper for changing polarity Uwe Kleine-König
  2018-11-04 21:19 ` Uwe Kleine-König
@ 2018-12-12 10:56 ` Thierry Reding
  1 sibling, 0 replies; 11+ messages in thread
From: Thierry Reding @ 2018-12-12 10:56 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

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

On Mon, Oct 15, 2018 at 10:21:52AM +0200, Uwe Kleine-König wrote:
> The API to configure a PWM using pwm_enable(), pwm_disable(),
> pwm_config() and pwm_set_polarity() is superseeded by atomically setting
> the parameters using pwm_apply_state(). To get forward with deprecating
> the former set of functions use the opportunity that there is no current
> user of pwm_set_polarity() and remove it.
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
>  include/linux/pwm.h | 42 ------------------------------------------
>  1 file changed, 42 deletions(-)

Applied, thanks. I did change the subject to start with "pwm: Drop" to
make it consistent with other commit messages.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] PWM: drop legacy wrapper for changing polarity
  2018-12-12 10:25           ` Thierry Reding
@ 2018-12-12 10:59             ` Uwe Kleine-König
  2019-09-16 13:05             ` Offer to co-maintain drivers/pwm [Was: Re: [PATCH] PWM: drop legacy wrapper for changing polarity] Uwe Kleine-König
  1 sibling, 0 replies; 11+ messages in thread
From: Uwe Kleine-König @ 2018-12-12 10:59 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, Gavin Schenk, Vokáč Michal, kernel

Hello Thierry,

On Wed, Dec 12, 2018 at 11:25:47AM +0100, Thierry Reding wrote:
> I certainly wouldn't mind a little help. Reviewing patches will
> definitely help move things along.

I already did. Apart from my patch series noted before:

 - series for pwm-imx starting with
   "pwm: imx: remove if block where the condition is always wrong"
 - "pwm: don't use memcmp to compare struct state variables"
 - "pwm: drop per-chip dbg_show callback"

I think the following patches are ready for application:

 - [v3] pwm: kconfig: enable kona pwm to be built for cygnus arch
 - [13/17] pwm: bcm2835: Switch to SPDX identifier

As I only recently subscribed to the linux-pwm list I don't have the
older patches listed on
https://patchwork.ozlabs.org/project/linux-pwm/list/ in my inbox. Just
grabbed Michal's imx get_state series from there and replied.

Other than that feedback to my RFC doc patch would be great. One thing I
didn't mention there is: Is pwm_disable supposed to wait for the current
period to end? I'd say yes (even though it might make sense to have the
possibility to stop immediately in some cases).

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Offer to co-maintain drivers/pwm [Was: Re: [PATCH] PWM: drop legacy wrapper for changing polarity]
  2018-12-12 10:25           ` Thierry Reding
  2018-12-12 10:59             ` Uwe Kleine-König
@ 2019-09-16 13:05             ` Uwe Kleine-König
  2019-09-16 13:53               ` Thierry Reding
  1 sibling, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2019-09-16 13:05 UTC (permalink / raw)
  To: Thierry Reding; +Cc: linux-pwm, kernel

Hello Thierry,

On Wed, Dec 12, 2018 at 11:25:47AM +0100, Thierry Reding wrote:
> I certainly wouldn't mind a little help. Reviewing patches will
> definitely help move things along.

I'm a bit frustrated with the state of the list of open patches. There
were little feedback from you on the list since July, during this time
https://patchwork.ozlabs.org/project/linux-pwm/list/ grew by ~1.5 pages
and there are still topics that I want to bring forward that depend on
you to cooperate. As I spend quite some time reviewing patches here, I
wonder if you'd be willing to give me maintainer-status for the pwm
patchwork to update the state on the various patches there. If you want
I can also add me to the MAINTAINERS file (as reviewer or maintainer --
whatever you consider sensible). I'd also like to have pwm patches
applied in a more expeditious way and expose them in next.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: Offer to co-maintain drivers/pwm [Was: Re: [PATCH] PWM: drop legacy wrapper for changing polarity]
  2019-09-16 13:05             ` Offer to co-maintain drivers/pwm [Was: Re: [PATCH] PWM: drop legacy wrapper for changing polarity] Uwe Kleine-König
@ 2019-09-16 13:53               ` Thierry Reding
  0 siblings, 0 replies; 11+ messages in thread
From: Thierry Reding @ 2019-09-16 13:53 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: linux-pwm, kernel

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

On Mon, Sep 16, 2019 at 03:05:47PM +0200, Uwe Kleine-König wrote:
> Hello Thierry,
> 
> On Wed, Dec 12, 2018 at 11:25:47AM +0100, Thierry Reding wrote:
> > I certainly wouldn't mind a little help. Reviewing patches will
> > definitely help move things along.
> 
> I'm a bit frustrated with the state of the list of open patches. There
> were little feedback from you on the list since July, during this time
> https://patchwork.ozlabs.org/project/linux-pwm/list/ grew by ~1.5 pages
> and there are still topics that I want to bring forward that depend on
> you to cooperate. As I spend quite some time reviewing patches here, I
> wonder if you'd be willing to give me maintainer-status for the pwm
> patchwork to update the state on the various patches there. If you want
> I can also add me to the MAINTAINERS file (as reviewer or maintainer --
> whatever you consider sensible). I'd also like to have pwm patches
> applied in a more expeditious way and expose them in next.

Feel free to send a patch to add you as reviewer, you've been doing good
work so far.

I know I've been lagging behind on review and maintainance tasks since I
have been busy with a bunch of other things lately and I've had little
to no spare time at all for a few weeks. I'm hopeful that things will
get back to mostly normal for the next cycle (things have been slowing
down recently). I'm also considering making a few changes to my daily
routine so that I can hopefully get around to patch review sooner.

Thierry

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2019-09-16 13:53 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-15  8:21 [PATCH] PWM: drop legacy wrapper for changing polarity Uwe Kleine-König
2018-11-04 21:19 ` Uwe Kleine-König
2018-11-20 16:57   ` Uwe Kleine-König
2018-11-30  8:59     ` Uwe Kleine-König
2018-12-06  9:20       ` Uwe Kleine-König
2018-12-11 21:26         ` Uwe Kleine-König
2018-12-12 10:25           ` Thierry Reding
2018-12-12 10:59             ` Uwe Kleine-König
2019-09-16 13:05             ` Offer to co-maintain drivers/pwm [Was: Re: [PATCH] PWM: drop legacy wrapper for changing polarity] Uwe Kleine-König
2019-09-16 13:53               ` Thierry Reding
2018-12-12 10:56 ` [PATCH] PWM: drop legacy wrapper for changing polarity Thierry Reding

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.