All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5] update tas2780.yaml
@ 2022-07-12  5:08 ` Raphael-Xu
  0 siblings, 0 replies; 10+ messages in thread
From: Raphael-Xu @ 2022-07-12  5:08 UTC (permalink / raw)
  To: robh+dt
  Cc: devicetree, alsa-devel, navada, broonie, asyrus, raphael-xu,
	shenghao-ding, Raphael-Xu

1.remove unused item in DT 2.revise the format

Signed-off-by: Raphael-Xu <13691752556@139.com>
---
 .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/Documentation/devicetree/bindings/sound/tas2780.yaml b/Documentation/devicetree/bindings/sound/tas2780.yaml
index 5a0de0995066..21389a16fdb9 100644
--- a/Documentation/devicetree/bindings/sound/tas2780.yaml
+++ b/Documentation/devicetree/bindings/sound/tas2780.yaml
@@ -22,24 +22,29 @@ properties:
       - ti,tas2780
 
   reg:
-    maxItems: 1
-    description: |
-       I2C address of the device can be between 0x38 to 0x45.
+    description:
+       I2C address of the device can be between 0x38 to 0x3f.
+    minimum: 0x38
+    maximum: 0x3f
 
   reset-gpios:
-    maxItems: 1
     description: GPIO used to reset the device.
+    maxItems: 1
 
   interrupts:
     maxItems: 1
 
   ti,imon-slot-no:
-    $ref: /schemas/types.yaml#/definitions/uint32
     description: TDM TX current sense time slot.
+    $ref: /schemas/types.yaml#/definitions/uint32
+    minimum: 0
+    maximum: 3
 
   ti,vmon-slot-no:
-    $ref: /schemas/types.yaml#/definitions/uint32
     description: TDM TX voltage sense time slot.
+    $ref: /schemas/types.yaml#/definitions/uint32
+    minimum: 0
+    maximum: 3
 
   '#sound-dai-cells':
     const: 1
@@ -60,10 +65,8 @@ examples:
        compatible = "ti,tas2780";
        reg = <0x38>;
        #sound-dai-cells = <1>;
-       interrupt-parent = <&gpio1>;
        interrupts = <14>;
        reset-gpios = <&gpio1 15 0>;
-       shutdown-gpios = <&gpio1 15 0>;
        ti,imon-slot-no = <0>;
        ti,vmon-slot-no = <2>;
      };
-- 
2.35.1



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

* [PATCH v5] update tas2780.yaml
@ 2022-07-12  5:08 ` Raphael-Xu
  0 siblings, 0 replies; 10+ messages in thread
From: Raphael-Xu @ 2022-07-12  5:08 UTC (permalink / raw)
  To: robh+dt
  Cc: alsa-devel, raphael-xu, shenghao-ding, navada, asyrus, broonie,
	devicetree, Raphael-Xu

1.remove unused item in DT 2.revise the format

Signed-off-by: Raphael-Xu <13691752556@139.com>
---
 .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/Documentation/devicetree/bindings/sound/tas2780.yaml b/Documentation/devicetree/bindings/sound/tas2780.yaml
index 5a0de0995066..21389a16fdb9 100644
--- a/Documentation/devicetree/bindings/sound/tas2780.yaml
+++ b/Documentation/devicetree/bindings/sound/tas2780.yaml
@@ -22,24 +22,29 @@ properties:
       - ti,tas2780
 
   reg:
-    maxItems: 1
-    description: |
-       I2C address of the device can be between 0x38 to 0x45.
+    description:
+       I2C address of the device can be between 0x38 to 0x3f.
+    minimum: 0x38
+    maximum: 0x3f
 
   reset-gpios:
-    maxItems: 1
     description: GPIO used to reset the device.
+    maxItems: 1
 
   interrupts:
     maxItems: 1
 
   ti,imon-slot-no:
-    $ref: /schemas/types.yaml#/definitions/uint32
     description: TDM TX current sense time slot.
+    $ref: /schemas/types.yaml#/definitions/uint32
+    minimum: 0
+    maximum: 3
 
   ti,vmon-slot-no:
-    $ref: /schemas/types.yaml#/definitions/uint32
     description: TDM TX voltage sense time slot.
+    $ref: /schemas/types.yaml#/definitions/uint32
+    minimum: 0
+    maximum: 3
 
   '#sound-dai-cells':
     const: 1
@@ -60,10 +65,8 @@ examples:
        compatible = "ti,tas2780";
        reg = <0x38>;
        #sound-dai-cells = <1>;
-       interrupt-parent = <&gpio1>;
        interrupts = <14>;
        reset-gpios = <&gpio1 15 0>;
-       shutdown-gpios = <&gpio1 15 0>;
        ti,imon-slot-no = <0>;
        ti,vmon-slot-no = <2>;
      };
-- 
2.35.1



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

* Re: [PATCH v5] update tas2780.yaml
  2022-07-12  5:08 ` Raphael-Xu
@ 2022-07-13 14:51   ` Rob Herring
  -1 siblings, 0 replies; 10+ messages in thread
From: Rob Herring @ 2022-07-13 14:51 UTC (permalink / raw)
  To: Raphael-Xu
  Cc: alsa-devel, raphael-xu, shenghao-ding, navada, asyrus, broonie,
	devicetree

On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> 1.remove unused item in DT 2.revise the format

Again, fix your subject. Run 'git log --oneline 
Documentation/devicetree/bindings/sound/' for inspiration of the format 
of the subject.

However, there's a bigger issue here. We already have a binding for this 
device. It's in tas27xx.yaml. And you added 2780 to it, so why did you 
add another schema? (All the same issues in that patch too. wrong 
subject, broken schema. So you haven't learned.)

And then there is also tas2770.yaml which appears to be about the same 
as well.

> 
> Signed-off-by: Raphael-Xu <13691752556@139.com>
> ---
>  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)

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

* Re: [PATCH v5] update tas2780.yaml
@ 2022-07-13 14:51   ` Rob Herring
  0 siblings, 0 replies; 10+ messages in thread
From: Rob Herring @ 2022-07-13 14:51 UTC (permalink / raw)
  To: Raphael-Xu
  Cc: devicetree, alsa-devel, navada, broonie, asyrus, raphael-xu,
	shenghao-ding

On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> 1.remove unused item in DT 2.revise the format

Again, fix your subject. Run 'git log --oneline 
Documentation/devicetree/bindings/sound/' for inspiration of the format 
of the subject.

However, there's a bigger issue here. We already have a binding for this 
device. It's in tas27xx.yaml. And you added 2780 to it, so why did you 
add another schema? (All the same issues in that patch too. wrong 
subject, broken schema. So you haven't learned.)

And then there is also tas2770.yaml which appears to be about the same 
as well.

> 
> Signed-off-by: Raphael-Xu <13691752556@139.com>
> ---
>  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)

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

* RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
  2022-07-13 14:51   ` Rob Herring
@ 2022-07-20  3:48     ` Xu, Yang
  -1 siblings, 0 replies; 10+ messages in thread
From: Xu, Yang @ 2022-07-20  3:48 UTC (permalink / raw)
  To: Rob Herring, Raphael-Xu
  Cc: alsa-devel, Ding, Shenghao, Navada Kanyana, Mukund, Syrus, Andy,
	broonie, devicetree

Hi Rob,

Please see my reply.

-----Original Message-----
From: Rob Herring <robh@kernel.org> 
Sent: Wednesday, July 13, 2022 10:52 PM
To: Raphael-Xu <13691752556@139.com>
Cc: alsa-devel@alsa-project.org; Xu, Yang <raphael-xu@ti.com>; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
Subject: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml

On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> 1.remove unused item in DT 2.revise the format

Again, fix your subject. Run 'git log --oneline Documentation/devicetree/bindings/sound/' for inspiration of the format of the subject.
[RX]:just submit new patch
However, there's a bigger issue here. We already have a binding for this device. It's in tas27xx.yaml. And you added 2780 to it, so why did you add another schema? (All the same issues in that patch too. wrong subject, broken schema. So you haven't learned.)
[RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
And then there is also tas2770.yaml which appears to be about the same as well.
[RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
> 
> Signed-off-by: Raphael-Xu <13691752556@139.com>
> ---
>  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)

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

* RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
@ 2022-07-20  3:48     ` Xu, Yang
  0 siblings, 0 replies; 10+ messages in thread
From: Xu, Yang @ 2022-07-20  3:48 UTC (permalink / raw)
  To: Rob Herring, Raphael-Xu
  Cc: devicetree, alsa-devel, Syrus, Andy, broonie, Navada Kanyana,
	Mukund, Ding,  Shenghao

Hi Rob,

Please see my reply.

-----Original Message-----
From: Rob Herring <robh@kernel.org> 
Sent: Wednesday, July 13, 2022 10:52 PM
To: Raphael-Xu <13691752556@139.com>
Cc: alsa-devel@alsa-project.org; Xu, Yang <raphael-xu@ti.com>; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
Subject: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml

On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> 1.remove unused item in DT 2.revise the format

Again, fix your subject. Run 'git log --oneline Documentation/devicetree/bindings/sound/' for inspiration of the format of the subject.
[RX]:just submit new patch
However, there's a bigger issue here. We already have a binding for this device. It's in tas27xx.yaml. And you added 2780 to it, so why did you add another schema? (All the same issues in that patch too. wrong subject, broken schema. So you haven't learned.)
[RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
And then there is also tas2770.yaml which appears to be about the same as well.
[RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
> 
> Signed-off-by: Raphael-Xu <13691752556@139.com>
> ---
>  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)

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

* RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
  2022-07-20  3:48     ` Xu, Yang
@ 2022-07-20  5:43       ` Xu, Yang
  -1 siblings, 0 replies; 10+ messages in thread
From: Xu, Yang @ 2022-07-20  5:43 UTC (permalink / raw)
  To: Rob Herring, Raphael-Xu
  Cc: alsa-devel, Ding, Shenghao, Navada Kanyana, Mukund, Syrus, Andy,
	broonie, devicetree

Hi Rob,

One more question of tas27xx.yaml.Would you like us to delete tas27xx.yaml and submit new tas2764.yaml in updated format,or we just revert to old version tas2764.yaml commit?
Thanks.

Regards
Raphael

-----Original Message-----
From: Xu, Yang <> 
Sent: Wednesday, July 20, 2022 11:48 AM
To: 'Rob Herring' <robh@kernel.org>; Raphael-Xu <13691752556@139.com>
Cc: alsa-devel@alsa-project.org; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
Subject: RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml

Hi Rob,

Please see my reply.

-----Original Message-----
From: Rob Herring <robh@kernel.org>
Sent: Wednesday, July 13, 2022 10:52 PM
To: Raphael-Xu <13691752556@139.com>
Cc: alsa-devel@alsa-project.org; Xu, Yang <raphael-xu@ti.com>; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
Subject: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml

On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> 1.remove unused item in DT 2.revise the format

Again, fix your subject. Run 'git log --oneline Documentation/devicetree/bindings/sound/' for inspiration of the format of the subject.
[RX]:just submit new patch
However, there's a bigger issue here. We already have a binding for this device. It's in tas27xx.yaml. And you added 2780 to it, so why did you add another schema? (All the same issues in that patch too. wrong subject, broken schema. So you haven't learned.) [RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
And then there is also tas2770.yaml which appears to be about the same as well.
[RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
> 
> Signed-off-by: Raphael-Xu <13691752556@139.com>
> ---
>  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)

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

* RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
@ 2022-07-20  5:43       ` Xu, Yang
  0 siblings, 0 replies; 10+ messages in thread
From: Xu, Yang @ 2022-07-20  5:43 UTC (permalink / raw)
  To: Rob Herring, Raphael-Xu
  Cc: devicetree, alsa-devel, Syrus, Andy, broonie, Navada Kanyana,
	Mukund, Ding,  Shenghao

Hi Rob,

One more question of tas27xx.yaml.Would you like us to delete tas27xx.yaml and submit new tas2764.yaml in updated format,or we just revert to old version tas2764.yaml commit?
Thanks.

Regards
Raphael

-----Original Message-----
From: Xu, Yang <> 
Sent: Wednesday, July 20, 2022 11:48 AM
To: 'Rob Herring' <robh@kernel.org>; Raphael-Xu <13691752556@139.com>
Cc: alsa-devel@alsa-project.org; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
Subject: RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml

Hi Rob,

Please see my reply.

-----Original Message-----
From: Rob Herring <robh@kernel.org>
Sent: Wednesday, July 13, 2022 10:52 PM
To: Raphael-Xu <13691752556@139.com>
Cc: alsa-devel@alsa-project.org; Xu, Yang <raphael-xu@ti.com>; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
Subject: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml

On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> 1.remove unused item in DT 2.revise the format

Again, fix your subject. Run 'git log --oneline Documentation/devicetree/bindings/sound/' for inspiration of the format of the subject.
[RX]:just submit new patch
However, there's a bigger issue here. We already have a binding for this device. It's in tas27xx.yaml. And you added 2780 to it, so why did you add another schema? (All the same issues in that patch too. wrong subject, broken schema. So you haven't learned.) [RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
And then there is also tas2770.yaml which appears to be about the same as well.
[RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
> 
> Signed-off-by: Raphael-Xu <13691752556@139.com>
> ---
>  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
>  1 file changed, 11 insertions(+), 8 deletions(-)

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

* Re: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
  2022-07-20  5:43       ` Xu, Yang
@ 2022-07-20 23:02         ` Rob Herring
  -1 siblings, 0 replies; 10+ messages in thread
From: Rob Herring @ 2022-07-20 23:02 UTC (permalink / raw)
  To: Xu, Yang
  Cc: Raphael-Xu, alsa-devel, Ding, Shenghao, Navada Kanyana, Mukund,
	Syrus, Andy, broonie, devicetree

On Tue, Jul 19, 2022 at 11:44 PM Xu, Yang <raphael-xu@ti.com> wrote:
>
> Hi Rob,
>
> One more question of tas27xx.yaml.Would you like us to delete tas27xx.yaml and submit new tas2764.yaml in updated format,or we just revert to old version tas2764.yaml commit?
> Thanks.

I think tas2770.yaml and tas2780.yaml should both be removed with
ti,tas2770 compatible added to tas27xx.yaml.

>
> Regards
> Raphael
>
> -----Original Message-----
> From: Xu, Yang <>
> Sent: Wednesday, July 20, 2022 11:48 AM
> To: 'Rob Herring' <robh@kernel.org>; Raphael-Xu <13691752556@139.com>
> Cc: alsa-devel@alsa-project.org; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
> Subject: RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
>
> Hi Rob,
>
> Please see my reply.
>
> -----Original Message-----
> From: Rob Herring <robh@kernel.org>
> Sent: Wednesday, July 13, 2022 10:52 PM
> To: Raphael-Xu <13691752556@139.com>
> Cc: alsa-devel@alsa-project.org; Xu, Yang <raphael-xu@ti.com>; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
> Subject: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
>
> On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> > 1.remove unused item in DT 2.revise the format
>
> Again, fix your subject. Run 'git log --oneline Documentation/devicetree/bindings/sound/' for inspiration of the format of the subject.
> [RX]:just submit new patch

Closer, but still the wrong subject. You are missing spaces.

> However, there's a bigger issue here. We already have a binding for this device. It's in tas27xx.yaml. And you added 2780 to it, so why did you add another schema? (All the same issues in that patch too. wrong subject, broken schema. So you haven't learned.) [RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
> And then there is also tas2770.yaml which appears to be about the same as well.
> [RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.

Is deleting tas2780.yaml and just adding ti,tas2780 compatible not
sufficient? Why fix tas2780.yaml and then delete it? Doing the same
for tas2770 can be separate.

Rob

> >
> > Signed-off-by: Raphael-Xu <13691752556@139.com>
> > ---
> >  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
> >  1 file changed, 11 insertions(+), 8 deletions(-)

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

* Re: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
@ 2022-07-20 23:02         ` Rob Herring
  0 siblings, 0 replies; 10+ messages in thread
From: Rob Herring @ 2022-07-20 23:02 UTC (permalink / raw)
  To: Xu, Yang
  Cc: devicetree, alsa-devel, Navada Kanyana, Mukund, broonie, Syrus,
	Andy, Ding, Shenghao, Raphael-Xu

On Tue, Jul 19, 2022 at 11:44 PM Xu, Yang <raphael-xu@ti.com> wrote:
>
> Hi Rob,
>
> One more question of tas27xx.yaml.Would you like us to delete tas27xx.yaml and submit new tas2764.yaml in updated format,or we just revert to old version tas2764.yaml commit?
> Thanks.

I think tas2770.yaml and tas2780.yaml should both be removed with
ti,tas2770 compatible added to tas27xx.yaml.

>
> Regards
> Raphael
>
> -----Original Message-----
> From: Xu, Yang <>
> Sent: Wednesday, July 20, 2022 11:48 AM
> To: 'Rob Herring' <robh@kernel.org>; Raphael-Xu <13691752556@139.com>
> Cc: alsa-devel@alsa-project.org; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
> Subject: RE: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
>
> Hi Rob,
>
> Please see my reply.
>
> -----Original Message-----
> From: Rob Herring <robh@kernel.org>
> Sent: Wednesday, July 13, 2022 10:52 PM
> To: Raphael-Xu <13691752556@139.com>
> Cc: alsa-devel@alsa-project.org; Xu, Yang <raphael-xu@ti.com>; Ding, Shenghao <shenghao-ding@ti.com>; Navada Kanyana, Mukund <navada@ti.com>; Syrus, Andy <asyrus@ti.com>; broonie@kernel.org; devicetree@vger.kernel.org
> Subject: [EXTERNAL] Re: [PATCH v5] update tas2780.yaml
>
> On Tue, Jul 12, 2022 at 01:08:57PM +0800, Raphael-Xu wrote:
> > 1.remove unused item in DT 2.revise the format
>
> Again, fix your subject. Run 'git log --oneline Documentation/devicetree/bindings/sound/' for inspiration of the format of the subject.
> [RX]:just submit new patch

Closer, but still the wrong subject. You are missing spaces.

> However, there's a bigger issue here. We already have a binding for this device. It's in tas27xx.yaml. And you added 2780 to it, so why did you add another schema? (All the same issues in that patch too. wrong subject, broken schema. So you haven't learned.) [RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.
> And then there is also tas2770.yaml which appears to be about the same as well.
> [RX]:We will follow tas2780 patch format and submit separate patch if you think tas2780 patch is acceptable.

Is deleting tas2780.yaml and just adding ti,tas2780 compatible not
sufficient? Why fix tas2780.yaml and then delete it? Doing the same
for tas2770 can be separate.

Rob

> >
> > Signed-off-by: Raphael-Xu <13691752556@139.com>
> > ---
> >  .../devicetree/bindings/sound/tas2780.yaml    | 19 +++++++++++--------
> >  1 file changed, 11 insertions(+), 8 deletions(-)

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

end of thread, other threads:[~2022-07-20 23:04 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-12  5:08 [PATCH v5] update tas2780.yaml Raphael-Xu
2022-07-12  5:08 ` Raphael-Xu
2022-07-13 14:51 ` Rob Herring
2022-07-13 14:51   ` Rob Herring
2022-07-20  3:48   ` [EXTERNAL] " Xu, Yang
2022-07-20  3:48     ` Xu, Yang
2022-07-20  5:43     ` Xu, Yang
2022-07-20  5:43       ` Xu, Yang
2022-07-20 23:02       ` Rob Herring
2022-07-20 23:02         ` Rob Herring

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.