All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] ASoC: sgtl5000: Make the node name generic
@ 2018-05-04 19:12 Fabio Estevam
  2018-05-04 19:12 ` [PATCH 2/4] ASoC: wm8962: " Fabio Estevam
                   ` (4 more replies)
  0 siblings, 5 replies; 12+ messages in thread
From: Fabio Estevam @ 2018-05-04 19:12 UTC (permalink / raw)
  To: broonie; +Cc: Fabio Estevam, devicetree, alsa-devel, robh+dt

From: Fabio Estevam <fabio.estevam@nxp.com>

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 Documentation/devicetree/bindings/sound/sgtl5000.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/sgtl5000.txt b/Documentation/devicetree/bindings/sound/sgtl5000.txt
index 9a36c7e..0f21445 100644
--- a/Documentation/devicetree/bindings/sound/sgtl5000.txt
+++ b/Documentation/devicetree/bindings/sound/sgtl5000.txt
@@ -39,7 +39,7 @@ VDDIO		1.8V		2.5V		3.3V
 
 Example:
 
-codec: sgtl5000@a {
+sgtl5000: codec@a {
 	compatible = "fsl,sgtl5000";
 	reg = <0x0a>;
 	#sound-dai-cells = <0>;
-- 
2.7.4

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

* [PATCH 2/4] ASoC: wm8962: Make the node name generic
  2018-05-04 19:12 [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Fabio Estevam
@ 2018-05-04 19:12 ` Fabio Estevam
  2018-05-04 22:24   ` Rob Herring
  2018-05-05  1:43   ` Applied "ASoC: wm8962: Make the node name generic" to the asoc tree Mark Brown
  2018-05-04 19:12 ` [PATCH 3/4] ASoC: wm8960: Make the node name generic Fabio Estevam
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 12+ messages in thread
From: Fabio Estevam @ 2018-05-04 19:12 UTC (permalink / raw)
  To: broonie; +Cc: Fabio Estevam, devicetree, alsa-devel, robh+dt

From: Fabio Estevam <fabio.estevam@nxp.com>

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 Documentation/devicetree/bindings/sound/wm8962.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/wm8962.txt b/Documentation/devicetree/bindings/sound/wm8962.txt
index 7f82b59..dcfa9a33 100644
--- a/Documentation/devicetree/bindings/sound/wm8962.txt
+++ b/Documentation/devicetree/bindings/sound/wm8962.txt
@@ -24,7 +24,7 @@ Optional properties:
 
 Example:
 
-codec: wm8962@1a {
+wm8962: codec@1a {
 	compatible = "wlf,wm8962";
 	reg = <0x1a>;
 
-- 
2.7.4

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

* [PATCH 3/4] ASoC: wm8960: Make the node name generic
  2018-05-04 19:12 [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Fabio Estevam
  2018-05-04 19:12 ` [PATCH 2/4] ASoC: wm8962: " Fabio Estevam
@ 2018-05-04 19:12 ` Fabio Estevam
  2018-05-04 22:25   ` Rob Herring
  2018-05-05  1:43   ` Applied "ASoC: wm8960: Make the node name generic" to the asoc tree Mark Brown
  2018-05-04 19:12 ` [PATCH 4/4] ASoC: cs42xx8: Make the node name generic Fabio Estevam
                   ` (2 subsequent siblings)
  4 siblings, 2 replies; 12+ messages in thread
From: Fabio Estevam @ 2018-05-04 19:12 UTC (permalink / raw)
  To: broonie; +Cc: Fabio Estevam, devicetree, alsa-devel, robh+dt

From: Fabio Estevam <fabio.estevam@nxp.com>

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 Documentation/devicetree/bindings/sound/wm8960.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/wm8960.txt b/Documentation/devicetree/bindings/sound/wm8960.txt
index 2deb8a3..6d29ac3 100644
--- a/Documentation/devicetree/bindings/sound/wm8960.txt
+++ b/Documentation/devicetree/bindings/sound/wm8960.txt
@@ -23,7 +23,7 @@ Optional properties:
 
 Example:
 
-codec: wm8960@1a {
+wm8960: codec@1a {
 	compatible = "wlf,wm8960";
 	reg = <0x1a>;
 
-- 
2.7.4

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

* [PATCH 4/4] ASoC: cs42xx8: Make the node name generic
  2018-05-04 19:12 [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Fabio Estevam
  2018-05-04 19:12 ` [PATCH 2/4] ASoC: wm8962: " Fabio Estevam
  2018-05-04 19:12 ` [PATCH 3/4] ASoC: wm8960: Make the node name generic Fabio Estevam
@ 2018-05-04 19:12 ` Fabio Estevam
  2018-05-04 22:25   ` Rob Herring
  2018-05-05  1:43   ` Applied "ASoC: cs42xx8: Make the node name generic" to the asoc tree Mark Brown
  2018-05-04 22:24 ` [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Rob Herring
  2018-05-05  1:44 ` Applied "ASoC: sgtl5000: Make the node name generic" to the asoc tree Mark Brown
  4 siblings, 2 replies; 12+ messages in thread
From: Fabio Estevam @ 2018-05-04 19:12 UTC (permalink / raw)
  To: broonie; +Cc: Fabio Estevam, devicetree, alsa-devel, robh+dt

From: Fabio Estevam <fabio.estevam@nxp.com>

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 Documentation/devicetree/bindings/sound/cs42xx8.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/cs42xx8.txt b/Documentation/devicetree/bindings/sound/cs42xx8.txt
index f631fbc..8619a15 100644
--- a/Documentation/devicetree/bindings/sound/cs42xx8.txt
+++ b/Documentation/devicetree/bindings/sound/cs42xx8.txt
@@ -16,7 +16,7 @@ Required properties:
 
 Example:
 
-codec: cs42888@48 {
+cs42888: codec@48 {
 	compatible = "cirrus,cs42888";
 	reg = <0x48>;
 	clocks = <&codec_mclk 0>;
-- 
2.7.4

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

* Re: [PATCH 1/4] ASoC: sgtl5000: Make the node name generic
  2018-05-04 19:12 [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Fabio Estevam
                   ` (2 preceding siblings ...)
  2018-05-04 19:12 ` [PATCH 4/4] ASoC: cs42xx8: Make the node name generic Fabio Estevam
@ 2018-05-04 22:24 ` Rob Herring
  2018-05-05  1:44 ` Applied "ASoC: sgtl5000: Make the node name generic" to the asoc tree Mark Brown
  4 siblings, 0 replies; 12+ messages in thread
From: Rob Herring @ 2018-05-04 22:24 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, devicetree, alsa-devel, broonie

On Fri, May 04, 2018 at 04:12:00PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> According to Devicetree Specification v0.2 document:
> 
> "The name of a node should be somewhat generic, reflecting the function
> of the device and not its precise programming model."
> 
> Do as suggested in the binding example.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> ---
>  Documentation/devicetree/bindings/sound/sgtl5000.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied.

Rob

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

* Re: [PATCH 2/4] ASoC: wm8962: Make the node name generic
  2018-05-04 19:12 ` [PATCH 2/4] ASoC: wm8962: " Fabio Estevam
@ 2018-05-04 22:24   ` Rob Herring
  2018-05-05  1:43   ` Applied "ASoC: wm8962: Make the node name generic" to the asoc tree Mark Brown
  1 sibling, 0 replies; 12+ messages in thread
From: Rob Herring @ 2018-05-04 22:24 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, devicetree, alsa-devel, broonie

On Fri, May 04, 2018 at 04:12:01PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> According to Devicetree Specification v0.2 document:
> 
> "The name of a node should be somewhat generic, reflecting the function
> of the device and not its precise programming model."
> 
> Do as suggested in the binding example.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> ---
>  Documentation/devicetree/bindings/sound/wm8962.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied.

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

* Re: [PATCH 3/4] ASoC: wm8960: Make the node name generic
  2018-05-04 19:12 ` [PATCH 3/4] ASoC: wm8960: Make the node name generic Fabio Estevam
@ 2018-05-04 22:25   ` Rob Herring
  2018-05-05  1:43   ` Applied "ASoC: wm8960: Make the node name generic" to the asoc tree Mark Brown
  1 sibling, 0 replies; 12+ messages in thread
From: Rob Herring @ 2018-05-04 22:25 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, devicetree, alsa-devel, broonie

On Fri, May 04, 2018 at 04:12:02PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> According to Devicetree Specification v0.2 document:
> 
> "The name of a node should be somewhat generic, reflecting the function
> of the device and not its precise programming model."
> 
> Do as suggested in the binding example.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> ---
>  Documentation/devicetree/bindings/sound/wm8960.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/sound/wm8960.txt b/Documentation/devicetree/bindings/sound/wm8960.txt
> index 2deb8a3..6d29ac3 100644
> --- a/Documentation/devicetree/bindings/sound/wm8960.txt
> +++ b/Documentation/devicetree/bindings/sound/wm8960.txt
> @@ -23,7 +23,7 @@ Optional properties:

Applied.

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

* Re: [PATCH 4/4] ASoC: cs42xx8: Make the node name generic
  2018-05-04 19:12 ` [PATCH 4/4] ASoC: cs42xx8: Make the node name generic Fabio Estevam
@ 2018-05-04 22:25   ` Rob Herring
  2018-05-05  1:43   ` Applied "ASoC: cs42xx8: Make the node name generic" to the asoc tree Mark Brown
  1 sibling, 0 replies; 12+ messages in thread
From: Rob Herring @ 2018-05-04 22:25 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, devicetree, alsa-devel, broonie

On Fri, May 04, 2018 at 04:12:03PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> According to Devicetree Specification v0.2 document:
> 
> "The name of a node should be somewhat generic, reflecting the function
> of the device and not its precise programming model."
> 
> Do as suggested in the binding example.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> ---
>  Documentation/devicetree/bindings/sound/cs42xx8.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied.

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

* Applied "ASoC: cs42xx8: Make the node name generic" to the asoc tree
  2018-05-04 19:12 ` [PATCH 4/4] ASoC: cs42xx8: Make the node name generic Fabio Estevam
  2018-05-04 22:25   ` Rob Herring
@ 2018-05-05  1:43   ` Mark Brown
  1 sibling, 0 replies; 12+ messages in thread
From: Mark Brown @ 2018-05-05  1:43 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: devicetree, alsa-devel, broonie, robh+dt

The patch

   ASoC: cs42xx8: Make the node name generic

has been applied to the asoc tree at

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

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

>From 6a8f1a282348a47bcbb6c5418a86d271d1fb0ad2 Mon Sep 17 00:00:00 2001
From: Fabio Estevam <fabio.estevam@nxp.com>
Date: Fri, 4 May 2018 16:12:03 -0300
Subject: [PATCH] ASoC: cs42xx8: Make the node name generic

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/cs42xx8.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/cs42xx8.txt b/Documentation/devicetree/bindings/sound/cs42xx8.txt
index f631fbca6284..8619a156d038 100644
--- a/Documentation/devicetree/bindings/sound/cs42xx8.txt
+++ b/Documentation/devicetree/bindings/sound/cs42xx8.txt
@@ -16,7 +16,7 @@ Required properties:
 
 Example:
 
-codec: cs42888@48 {
+cs42888: codec@48 {
 	compatible = "cirrus,cs42888";
 	reg = <0x48>;
 	clocks = <&codec_mclk 0>;
-- 
2.17.0

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

* Applied "ASoC: wm8960: Make the node name generic" to the asoc tree
  2018-05-04 19:12 ` [PATCH 3/4] ASoC: wm8960: Make the node name generic Fabio Estevam
  2018-05-04 22:25   ` Rob Herring
@ 2018-05-05  1:43   ` Mark Brown
  1 sibling, 0 replies; 12+ messages in thread
From: Mark Brown @ 2018-05-05  1:43 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: devicetree, alsa-devel, broonie, robh+dt

The patch

   ASoC: wm8960: Make the node name generic

has been applied to the asoc tree at

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

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

>From 1dbec1f0f086bbcf811f34cf56af6ff749d10b59 Mon Sep 17 00:00:00 2001
From: Fabio Estevam <fabio.estevam@nxp.com>
Date: Fri, 4 May 2018 16:12:02 -0300
Subject: [PATCH] ASoC: wm8960: Make the node name generic

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/wm8960.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/wm8960.txt b/Documentation/devicetree/bindings/sound/wm8960.txt
index 2deb8a3da9c5..6d29ac3750ee 100644
--- a/Documentation/devicetree/bindings/sound/wm8960.txt
+++ b/Documentation/devicetree/bindings/sound/wm8960.txt
@@ -23,7 +23,7 @@ Optional properties:
 
 Example:
 
-codec: wm8960@1a {
+wm8960: codec@1a {
 	compatible = "wlf,wm8960";
 	reg = <0x1a>;
 
-- 
2.17.0

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

* Applied "ASoC: wm8962: Make the node name generic" to the asoc tree
  2018-05-04 19:12 ` [PATCH 2/4] ASoC: wm8962: " Fabio Estevam
  2018-05-04 22:24   ` Rob Herring
@ 2018-05-05  1:43   ` Mark Brown
  1 sibling, 0 replies; 12+ messages in thread
From: Mark Brown @ 2018-05-05  1:43 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: devicetree, alsa-devel, broonie, robh+dt

The patch

   ASoC: wm8962: Make the node name generic

has been applied to the asoc tree at

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

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

>From d2b4d003239ec8b2c48900b777130aaa6e9caed4 Mon Sep 17 00:00:00 2001
From: Fabio Estevam <fabio.estevam@nxp.com>
Date: Fri, 4 May 2018 16:12:01 -0300
Subject: [PATCH] ASoC: wm8962: Make the node name generic

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/wm8962.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/wm8962.txt b/Documentation/devicetree/bindings/sound/wm8962.txt
index 7f82b59ec8f9..dcfa9a3369fd 100644
--- a/Documentation/devicetree/bindings/sound/wm8962.txt
+++ b/Documentation/devicetree/bindings/sound/wm8962.txt
@@ -24,7 +24,7 @@ Optional properties:
 
 Example:
 
-codec: wm8962@1a {
+wm8962: codec@1a {
 	compatible = "wlf,wm8962";
 	reg = <0x1a>;
 
-- 
2.17.0

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

* Applied "ASoC: sgtl5000: Make the node name generic" to the asoc tree
  2018-05-04 19:12 [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Fabio Estevam
                   ` (3 preceding siblings ...)
  2018-05-04 22:24 ` [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Rob Herring
@ 2018-05-05  1:44 ` Mark Brown
  4 siblings, 0 replies; 12+ messages in thread
From: Mark Brown @ 2018-05-05  1:44 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: devicetree, alsa-devel, broonie, robh+dt

The patch

   ASoC: sgtl5000: Make the node name generic

has been applied to the asoc tree at

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

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

>From f59094e0373768a0c762ff0958879b12ad8beb82 Mon Sep 17 00:00:00 2001
From: Fabio Estevam <fabio.estevam@nxp.com>
Date: Fri, 4 May 2018 16:12:00 -0300
Subject: [PATCH] ASoC: sgtl5000: Make the node name generic

According to Devicetree Specification v0.2 document:

"The name of a node should be somewhat generic, reflecting the function
of the device and not its precise programming model."

Do as suggested in the binding example.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/sgtl5000.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/sgtl5000.txt b/Documentation/devicetree/bindings/sound/sgtl5000.txt
index 9a36c7e2a143..0f214457476f 100644
--- a/Documentation/devicetree/bindings/sound/sgtl5000.txt
+++ b/Documentation/devicetree/bindings/sound/sgtl5000.txt
@@ -39,7 +39,7 @@ VDDIO		1.8V		2.5V		3.3V
 
 Example:
 
-codec: sgtl5000@a {
+sgtl5000: codec@a {
 	compatible = "fsl,sgtl5000";
 	reg = <0x0a>;
 	#sound-dai-cells = <0>;
-- 
2.17.0

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

end of thread, other threads:[~2018-05-05  1:44 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-04 19:12 [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Fabio Estevam
2018-05-04 19:12 ` [PATCH 2/4] ASoC: wm8962: " Fabio Estevam
2018-05-04 22:24   ` Rob Herring
2018-05-05  1:43   ` Applied "ASoC: wm8962: Make the node name generic" to the asoc tree Mark Brown
2018-05-04 19:12 ` [PATCH 3/4] ASoC: wm8960: Make the node name generic Fabio Estevam
2018-05-04 22:25   ` Rob Herring
2018-05-05  1:43   ` Applied "ASoC: wm8960: Make the node name generic" to the asoc tree Mark Brown
2018-05-04 19:12 ` [PATCH 4/4] ASoC: cs42xx8: Make the node name generic Fabio Estevam
2018-05-04 22:25   ` Rob Herring
2018-05-05  1:43   ` Applied "ASoC: cs42xx8: Make the node name generic" to the asoc tree Mark Brown
2018-05-04 22:24 ` [PATCH 1/4] ASoC: sgtl5000: Make the node name generic Rob Herring
2018-05-05  1:44 ` Applied "ASoC: sgtl5000: Make the node name generic" to the asoc tree Mark Brown

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.