linux-pwm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice
@ 2024-04-30  7:32 Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 1/6] dt-bindings: pwm: bcm2835: Do not require pwm-cells twice Binbin Zhou
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-04-30  7:32 UTC (permalink / raw)
  To: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Huacai Chen, loongson-kernel, linux-pwm, devicetree, Binbin Zhou

Hi all:

When I was submitting the Loongson PWM dt-binding, Rob reminded me that
the pwm-cells property was already required in pwm.yaml and did not need
to be repeated.

This patchset attempts to clean up the required pwm-cells attribute twice.

Thanks.

Binbin Zhou (6):
  dt-bindings: pwm: bcm2835: Do not require pwm-cells twice
  dt-bindings: pwm: google,cros-ec: Do not require pwm-cells twice
  dt-bindings: pwm: marvell,pxa: Do not require pwm-cells twice
  dt-bindings: pwm: mediatek,mt2712: Do not require pwm-cells twice
  dt-bindings: pwm: mediatek,pwm-disp: Do not require pwm-cells twice
  dt-bindings: pwm: snps,dw-apb-timers: Do not require pwm-cells twice

 Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml    | 1 -
 Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml       | 1 -
 Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml   | 1 -
 Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml     | 1 -
 Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml           | 1 -
 .../devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml         | 1 -
 6 files changed, 6 deletions(-)

-- 
2.43.0


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

* [PATCH v1 1/6] dt-bindings: pwm: bcm2835: Do not require pwm-cells twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
@ 2024-04-30  7:32 ` Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 2/6] dt-bindings: pwm: google,cros-ec: " Binbin Zhou
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-04-30  7:32 UTC (permalink / raw)
  To: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Huacai Chen, loongson-kernel, linux-pwm, devicetree, Binbin Zhou

pwm-cells property is already required by pwm.yaml schema.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
---
 Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml b/Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml
index 15e7fd98defc..9dc25f38fb94 100644
--- a/Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml
+++ b/Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml
@@ -29,7 +29,6 @@ required:
   - compatible
   - reg
   - clocks
-  - "#pwm-cells"
 
 additionalProperties: false
 
-- 
2.43.0


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

* [PATCH v1 2/6] dt-bindings: pwm: google,cros-ec: Do not require pwm-cells twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 1/6] dt-bindings: pwm: bcm2835: Do not require pwm-cells twice Binbin Zhou
@ 2024-04-30  7:32 ` Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 3/6] dt-bindings: pwm: marvell,pxa: " Binbin Zhou
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-04-30  7:32 UTC (permalink / raw)
  To: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Huacai Chen, loongson-kernel, linux-pwm, devicetree, Binbin Zhou

pwm-cells property is already required by pwm.yaml schema.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
---
 Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml b/Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml
index 3afe1480df52..f7bc84b05a87 100644
--- a/Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml
+++ b/Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml
@@ -35,7 +35,6 @@ properties:
 
 required:
   - compatible
-  - '#pwm-cells'
 
 additionalProperties: false
 
-- 
2.43.0


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

* [PATCH v1 3/6] dt-bindings: pwm: marvell,pxa: Do not require pwm-cells twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 1/6] dt-bindings: pwm: bcm2835: Do not require pwm-cells twice Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 2/6] dt-bindings: pwm: google,cros-ec: " Binbin Zhou
@ 2024-04-30  7:32 ` Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 4/6] dt-bindings: pwm: mediatek,mt2712: " Binbin Zhou
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-04-30  7:32 UTC (permalink / raw)
  To: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Huacai Chen, loongson-kernel, linux-pwm, devicetree, Binbin Zhou

pwm-cells property is already required by pwm.yaml schema.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
---
 Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml b/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
index ba6325575ea0..9ee1946dc2e1 100644
--- a/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
+++ b/Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml
@@ -34,7 +34,6 @@ properties:
 required:
   - compatible
   - reg
-  - "#pwm-cells"
   - clocks
 
 additionalProperties: false
-- 
2.43.0


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

* [PATCH v1 4/6] dt-bindings: pwm: mediatek,mt2712: Do not require pwm-cells twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
                   ` (2 preceding siblings ...)
  2024-04-30  7:32 ` [PATCH v1 3/6] dt-bindings: pwm: marvell,pxa: " Binbin Zhou
@ 2024-04-30  7:32 ` Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 5/6] dt-bindings: pwm: mediatek,pwm-disp: " Binbin Zhou
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-04-30  7:32 UTC (permalink / raw)
  To: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Huacai Chen, loongson-kernel, linux-pwm, devicetree, Binbin Zhou

pwm-cells property is already required by pwm.yaml schema.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
---
 Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml b/Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml
index a5c308801619..d515c09e1021 100644
--- a/Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml
+++ b/Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml
@@ -66,7 +66,6 @@ properties:
 required:
   - compatible
   - reg
-  - "#pwm-cells"
   - clocks
   - clock-names
 
-- 
2.43.0


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

* [PATCH v1 5/6] dt-bindings: pwm: mediatek,pwm-disp: Do not require pwm-cells twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
                   ` (3 preceding siblings ...)
  2024-04-30  7:32 ` [PATCH v1 4/6] dt-bindings: pwm: mediatek,mt2712: " Binbin Zhou
@ 2024-04-30  7:32 ` Binbin Zhou
  2024-04-30  7:32 ` [PATCH v1 6/6] dt-bindings: pwm: snps,dw-apb-timers: " Binbin Zhou
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-04-30  7:32 UTC (permalink / raw)
  To: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Huacai Chen, loongson-kernel, linux-pwm, devicetree, Binbin Zhou

pwm-cells property is already required by pwm.yaml schema.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
---
 Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml b/Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml
index bc813fe74fab..415730f078f5 100644
--- a/Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml
+++ b/Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml
@@ -58,7 +58,6 @@ properties:
 required:
   - compatible
   - reg
-  - "#pwm-cells"
   - clocks
   - clock-names
 
-- 
2.43.0


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

* [PATCH v1 6/6] dt-bindings: pwm: snps,dw-apb-timers: Do not require pwm-cells twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
                   ` (4 preceding siblings ...)
  2024-04-30  7:32 ` [PATCH v1 5/6] dt-bindings: pwm: mediatek,pwm-disp: " Binbin Zhou
@ 2024-04-30  7:32 ` Binbin Zhou
  2024-04-30 16:58 ` [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Conor Dooley
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-04-30  7:32 UTC (permalink / raw)
  To: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley
  Cc: Huacai Chen, loongson-kernel, linux-pwm, devicetree, Binbin Zhou

pwm-cells property is already required by pwm.yaml schema.

Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn>
---
 .../devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml         | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml b/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml
index 4d0b5964443d..7523a89a1773 100644
--- a/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml
+++ b/Documentation/devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml
@@ -51,7 +51,6 @@ properties:
 required:
   - compatible
   - reg
-  - "#pwm-cells"
   - clocks
   - clock-names
 
-- 
2.43.0


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

* Re: [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
                   ` (5 preceding siblings ...)
  2024-04-30  7:32 ` [PATCH v1 6/6] dt-bindings: pwm: snps,dw-apb-timers: " Binbin Zhou
@ 2024-04-30 16:58 ` Conor Dooley
  2024-04-30 17:16 ` Rob Herring
  2024-05-01  9:58 ` Uwe Kleine-König
  8 siblings, 0 replies; 11+ messages in thread
From: Conor Dooley @ 2024-04-30 16:58 UTC (permalink / raw)
  To: Binbin Zhou
  Cc: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Huacai Chen, loongson-kernel,
	linux-pwm, devicetree

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

On Tue, Apr 30, 2024 at 03:32:01PM +0800, Binbin Zhou wrote:
> Hi all:
> 
> When I was submitting the Loongson PWM dt-binding, Rob reminded me that
> the pwm-cells property was already required in pwm.yaml and did not need
> to be repeated.
> 
> This patchset attempts to clean up the required pwm-cells attribute twice.

Acked-by: Conor Dooley <conor.dooley@microchip.com>

Cheers,
Conor.

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

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

* Re: [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
                   ` (6 preceding siblings ...)
  2024-04-30 16:58 ` [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Conor Dooley
@ 2024-04-30 17:16 ` Rob Herring
  2024-05-01  9:58 ` Uwe Kleine-König
  8 siblings, 0 replies; 11+ messages in thread
From: Rob Herring @ 2024-04-30 17:16 UTC (permalink / raw)
  To: Binbin Zhou
  Cc: Binbin Zhou, Huacai Chen, Uwe Kleine-König,
	Krzysztof Kozlowski, Conor Dooley, Huacai Chen, loongson-kernel,
	linux-pwm, devicetree

On Tue, Apr 30, 2024 at 2:32 AM Binbin Zhou <zhoubinbin@loongson.cn> wrote:
>
> Hi all:
>
> When I was submitting the Loongson PWM dt-binding, Rob reminded me that
> the pwm-cells property was already required in pwm.yaml and did not need
> to be repeated.
>
> This patchset attempts to clean up the required pwm-cells attribute twice.

Thanks for this.

> Thanks.
>
> Binbin Zhou (6):
>   dt-bindings: pwm: bcm2835: Do not require pwm-cells twice
>   dt-bindings: pwm: google,cros-ec: Do not require pwm-cells twice
>   dt-bindings: pwm: marvell,pxa: Do not require pwm-cells twice
>   dt-bindings: pwm: mediatek,mt2712: Do not require pwm-cells twice
>   dt-bindings: pwm: mediatek,pwm-disp: Do not require pwm-cells twice
>   dt-bindings: pwm: snps,dw-apb-timers: Do not require pwm-cells twice

This could really just be one patch. It's the same repeated change and
it's all going to 1 maintainer. No need to respin for that though.

Rob

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

* Re: [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice
  2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
                   ` (7 preceding siblings ...)
  2024-04-30 17:16 ` Rob Herring
@ 2024-05-01  9:58 ` Uwe Kleine-König
  2024-05-07  5:32   ` Binbin Zhou
  8 siblings, 1 reply; 11+ messages in thread
From: Uwe Kleine-König @ 2024-05-01  9:58 UTC (permalink / raw)
  To: Binbin Zhou
  Cc: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Huacai Chen, loongson-kernel,
	linux-pwm, devicetree

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

Hello,

On Tue, Apr 30, 2024 at 03:32:01PM +0800, Binbin Zhou wrote:
> When I was submitting the Loongson PWM dt-binding, Rob reminded me that
> the pwm-cells property was already required in pwm.yaml and did not need
> to be repeated.
> 
> This patchset attempts to clean up the required pwm-cells attribute twice.
> 
> Thanks.
> 
> Binbin Zhou (6):
>   dt-bindings: pwm: bcm2835: Do not require pwm-cells twice
>   dt-bindings: pwm: google,cros-ec: Do not require pwm-cells twice
>   dt-bindings: pwm: marvell,pxa: Do not require pwm-cells twice
>   dt-bindings: pwm: mediatek,mt2712: Do not require pwm-cells twice
>   dt-bindings: pwm: mediatek,pwm-disp: Do not require pwm-cells twice
>   dt-bindings: pwm: snps,dw-apb-timers: Do not require pwm-cells twice
> 
>  Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml    | 1 -
>  Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml       | 1 -
>  Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml   | 1 -
>  Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml     | 1 -
>  Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml           | 1 -
>  .../devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml         | 1 -
>  6 files changed, 6 deletions(-)

Applied the series to
https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git pwm/for-next

Documentation/devicetree/bindings/pwm/renesas,tpu-pwm.yaml seems to be
another candidate for a similar cleanup.

Thanks for your cleanup,
Uwe

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

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

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

* Re: [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice
  2024-05-01  9:58 ` Uwe Kleine-König
@ 2024-05-07  5:32   ` Binbin Zhou
  0 siblings, 0 replies; 11+ messages in thread
From: Binbin Zhou @ 2024-05-07  5:32 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Binbin Zhou, Huacai Chen, Uwe Kleine-König, Rob Herring,
	Krzysztof Kozlowski, Conor Dooley, Huacai Chen, loongson-kernel,
	linux-pwm, devicetree

On Wed, May 1, 2024 at 3:58 PM Uwe Kleine-König
<u.kleine-koenig@pengutronix.de> wrote:
>
> Hello,
>
> On Tue, Apr 30, 2024 at 03:32:01PM +0800, Binbin Zhou wrote:
> > When I was submitting the Loongson PWM dt-binding, Rob reminded me that
> > the pwm-cells property was already required in pwm.yaml and did not need
> > to be repeated.
> >
> > This patchset attempts to clean up the required pwm-cells attribute twice.
> >
> > Thanks.
> >
> > Binbin Zhou (6):
> >   dt-bindings: pwm: bcm2835: Do not require pwm-cells twice
> >   dt-bindings: pwm: google,cros-ec: Do not require pwm-cells twice
> >   dt-bindings: pwm: marvell,pxa: Do not require pwm-cells twice
> >   dt-bindings: pwm: mediatek,mt2712: Do not require pwm-cells twice
> >   dt-bindings: pwm: mediatek,pwm-disp: Do not require pwm-cells twice
> >   dt-bindings: pwm: snps,dw-apb-timers: Do not require pwm-cells twice
> >
> >  Documentation/devicetree/bindings/pwm/google,cros-ec-pwm.yaml    | 1 -
> >  Documentation/devicetree/bindings/pwm/marvell,pxa-pwm.yaml       | 1 -
> >  Documentation/devicetree/bindings/pwm/mediatek,mt2712-pwm.yaml   | 1 -
> >  Documentation/devicetree/bindings/pwm/mediatek,pwm-disp.yaml     | 1 -
> >  Documentation/devicetree/bindings/pwm/pwm-bcm2835.yaml           | 1 -
> >  .../devicetree/bindings/pwm/snps,dw-apb-timers-pwm2.yaml         | 1 -
> >  6 files changed, 6 deletions(-)
>
> Applied the series to
> https://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux.git pwm/for-next
>
> Documentation/devicetree/bindings/pwm/renesas,tpu-pwm.yaml seems to be
> another candidate for a similar cleanup.

Hi Uwe:

Sorry for the late reply.
Indeed, I missed this file. I'll post another patch later to clean it up.

Thanks.
Binbin
>
> Thanks for your cleanup,
> Uwe
>
> --
> Pengutronix e.K.                           | Uwe Kleine-König            |
> Industrial Linux Solutions                 | https://www.pengutronix.de/ |

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

end of thread, other threads:[~2024-05-07  5:32 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-30  7:32 [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Binbin Zhou
2024-04-30  7:32 ` [PATCH v1 1/6] dt-bindings: pwm: bcm2835: Do not require pwm-cells twice Binbin Zhou
2024-04-30  7:32 ` [PATCH v1 2/6] dt-bindings: pwm: google,cros-ec: " Binbin Zhou
2024-04-30  7:32 ` [PATCH v1 3/6] dt-bindings: pwm: marvell,pxa: " Binbin Zhou
2024-04-30  7:32 ` [PATCH v1 4/6] dt-bindings: pwm: mediatek,mt2712: " Binbin Zhou
2024-04-30  7:32 ` [PATCH v1 5/6] dt-bindings: pwm: mediatek,pwm-disp: " Binbin Zhou
2024-04-30  7:32 ` [PATCH v1 6/6] dt-bindings: pwm: snps,dw-apb-timers: " Binbin Zhou
2024-04-30 16:58 ` [PATCH v1 0/6] dt-bindings: pwm: Cleanup pwm-cells required twice Conor Dooley
2024-04-30 17:16 ` Rob Herring
2024-05-01  9:58 ` Uwe Kleine-König
2024-05-07  5:32   ` Binbin Zhou

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