public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells
@ 2023-10-04 12:29 Fabio Estevam
  2023-10-04 12:50 ` Adam Ford
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabio Estevam @ 2023-10-04 12:29 UTC (permalink / raw)
  To: broonie
  Cc: robh+dt, krzysztof.kozlowski+dt, conor+dt, shengjiu.wang,
	alsa-devel, devicetree, aford173, Fabio Estevam

From: Fabio Estevam <festevam@denx.de>

imx8mp.dtsi passes #sound-dai-cells = <0> in the micfil node.

Document #sound-dai-cells to fix the following schema warning:

audio-controller@30ca0000: '#sound-dai-cells' does not match any of the regexes: 'pinctrl-[0-9]+'
from schema $id: http://devicetree.org/schemas/sound/fsl,micfil.yaml#

Signed-off-by: Fabio Estevam <festevam@denx.de>
---
 Documentation/devicetree/bindings/sound/fsl,micfil.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/devicetree/bindings/sound/fsl,micfil.yaml b/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
index 4b99a18c79a0..b7e605835639 100644
--- a/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
+++ b/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
@@ -56,6 +56,9 @@ properties:
       - const: clkext3
     minItems: 2
 
+  "#sound-dai-cells":
+    const: 0
+
 required:
   - compatible
   - reg
-- 
2.34.1


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

* Re: [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells
  2023-10-04 12:29 [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells Fabio Estevam
@ 2023-10-04 12:50 ` Adam Ford
  2023-10-04 15:16 ` Rob Herring
  2023-10-04 17:14 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Adam Ford @ 2023-10-04 12:50 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: broonie, robh+dt, krzysztof.kozlowski+dt, conor+dt, shengjiu.wang,
	alsa-devel, devicetree, Fabio Estevam

On Wed, Oct 4, 2023 at 7:30 AM Fabio Estevam <festevam@gmail.com> wrote:
>
> From: Fabio Estevam <festevam@denx.de>
>
> imx8mp.dtsi passes #sound-dai-cells = <0> in the micfil node.
>
> Document #sound-dai-cells to fix the following schema warning:
>
> audio-controller@30ca0000: '#sound-dai-cells' does not match any of the regexes: 'pinctrl-[0-9]+'
> from schema $id: http://devicetree.org/schemas/sound/fsl,micfil.yaml#
>
Should we add a fixes tag, so it gets back-ported to stable branches?
It seems like patch 02d91fe47100 ("ASoC: dt-bindings: fsl,micfil:
Convert format to json-schema") may be appropriate.

> Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Adam Ford <aford173@gmail.com>

> ---
>  Documentation/devicetree/bindings/sound/fsl,micfil.yaml | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/sound/fsl,micfil.yaml b/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
> index 4b99a18c79a0..b7e605835639 100644
> --- a/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
> +++ b/Documentation/devicetree/bindings/sound/fsl,micfil.yaml
> @@ -56,6 +56,9 @@ properties:
>        - const: clkext3
>      minItems: 2
>
> +  "#sound-dai-cells":
> +    const: 0
> +
>  required:
>    - compatible
>    - reg
> --
> 2.34.1
>

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

* Re: [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells
  2023-10-04 12:29 [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells Fabio Estevam
  2023-10-04 12:50 ` Adam Ford
@ 2023-10-04 15:16 ` Rob Herring
  2023-10-04 17:14 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2023-10-04 15:16 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: Fabio Estevam, aford173, devicetree, robh+dt, shengjiu.wang,
	alsa-devel, conor+dt, krzysztof.kozlowski+dt, broonie


On Wed, 04 Oct 2023 09:29:35 -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
> 
> imx8mp.dtsi passes #sound-dai-cells = <0> in the micfil node.
> 
> Document #sound-dai-cells to fix the following schema warning:
> 
> audio-controller@30ca0000: '#sound-dai-cells' does not match any of the regexes: 'pinctrl-[0-9]+'
> from schema $id: http://devicetree.org/schemas/sound/fsl,micfil.yaml#
> 
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
>  Documentation/devicetree/bindings/sound/fsl,micfil.yaml | 3 +++
>  1 file changed, 3 insertions(+)
> 

Acked-by: Rob Herring <robh@kernel.org>


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

* Re: [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells
  2023-10-04 12:29 [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells Fabio Estevam
  2023-10-04 12:50 ` Adam Ford
  2023-10-04 15:16 ` Rob Herring
@ 2023-10-04 17:14 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2023-10-04 17:14 UTC (permalink / raw)
  To: Fabio Estevam
  Cc: robh+dt, krzysztof.kozlowski+dt, conor+dt, shengjiu.wang,
	alsa-devel, devicetree, aford173, Fabio Estevam

On Wed, 04 Oct 2023 09:29:35 -0300, Fabio Estevam wrote:
> imx8mp.dtsi passes #sound-dai-cells = <0> in the micfil node.
> 
> Document #sound-dai-cells to fix the following schema warning:
> 
> audio-controller@30ca0000: '#sound-dai-cells' does not match any of the regexes: 'pinctrl-[0-9]+'
> from schema $id: http://devicetree.org/schemas/sound/fsl,micfil.yaml#
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells
      commit: 1426b9ba7c453755d182ebf7e7f2367ba249dcf4

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


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

end of thread, other threads:[~2023-10-04 17:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-04 12:29 [PATCH] ASoC: dt-bindings: fsl,micfil: Document #sound-dai-cells Fabio Estevam
2023-10-04 12:50 ` Adam Ford
2023-10-04 15:16 ` Rob Herring
2023-10-04 17:14 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox