All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] ASoC: audio-graph-scu-card: tidyup for Example
@ 2017-10-17  6:56 Kuninori Morimoto
  2017-10-17  6:57 ` [PATCH 1/2] ASoC: audio-graph-scu-card: add missing Capture routing on Example Kuninori Morimoto
  2017-10-17  6:57 ` [PATCH 2/2] ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1 Kuninori Morimoto
  0 siblings, 2 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2017-10-17  6:56 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Simon


Hi Mark

These are not a big deal, but tidyup patches for audio-graph-scu-card
Example.

Kuninori Morimoto (2):
  ASoC: audio-graph-scu-card: add missing Capture routing on Example
  ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1

 Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

-- 
1.9.1

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

* [PATCH 1/2] ASoC: audio-graph-scu-card: add missing Capture routing on Example
  2017-10-17  6:56 [PATCH 0/2] ASoC: audio-graph-scu-card: tidyup for Example Kuninori Morimoto
@ 2017-10-17  6:57 ` Kuninori Morimoto
  2017-10-21 10:27   ` Applied "ASoC: audio-graph-scu-card: add missing Capture routing on Example" to the asoc tree Mark Brown
  2017-10-17  6:57 ` [PATCH 2/2] ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1 Kuninori Morimoto
  1 sibling, 1 reply; 5+ messages in thread
From: Kuninori Morimoto @ 2017-10-17  6:57 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Simon

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Both cases have 1 Capture path.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
index 8b8afe9..a10daf5 100644
--- a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
+++ b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
@@ -43,7 +43,8 @@ Example 1. Sampling Rate Conversion
 		label = "sound-card";
 		prefix = "codec";
 		routing = "codec Playback", "DAI0 Playback",
-			"codec Playback", "DAI1 Playback";
+			  "codec Playback", "DAI1 Playback",
+			  "DAI0 Capture",   "codec Capture";
 		convert-rate = <48000>;
 
 		dais = <&cpu_port>;
@@ -79,7 +80,8 @@ Example 2. 2 CPU 1 Codec (Mixing)
 		label = "sound-card";
 		prefix = "codec";
 		routing = "codec Playback", "DAI0 Playback",
-			"codec Playback", "DAI1 Playback";
+			  "codec Playback", "DAI1 Playback",
+			  "DAI0 Capture",   "codec Capture";
 		convert-rate = <48000>;
 
 		dais = <&cpu_port0
-- 
1.9.1

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

* [PATCH 2/2] ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1
  2017-10-17  6:56 [PATCH 0/2] ASoC: audio-graph-scu-card: tidyup for Example Kuninori Morimoto
  2017-10-17  6:57 ` [PATCH 1/2] ASoC: audio-graph-scu-card: add missing Capture routing on Example Kuninori Morimoto
@ 2017-10-17  6:57 ` Kuninori Morimoto
  2017-10-21 10:27   ` Applied "ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1" to the asoc tree Mark Brown
  1 sibling, 1 reply; 5+ messages in thread
From: Kuninori Morimoto @ 2017-10-17  6:57 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux-ALSA, Simon

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Example 1 is for "Sampling Rate Conversion",
sample has only 1 CPU, 1 Codec.
Thus, "codec Playback", "DAI1 Playback" route is unnecessary.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
index a10daf5..441dd6f 100644
--- a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
+++ b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
@@ -43,7 +43,6 @@ Example 1. Sampling Rate Conversion
 		label = "sound-card";
 		prefix = "codec";
 		routing = "codec Playback", "DAI0 Playback",
-			  "codec Playback", "DAI1 Playback",
 			  "DAI0 Capture",   "codec Capture";
 		convert-rate = <48000>;
 
-- 
1.9.1

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

* Applied "ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1" to the asoc tree
  2017-10-17  6:57 ` [PATCH 2/2] ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1 Kuninori Morimoto
@ 2017-10-21 10:27   ` Mark Brown
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2017-10-21 10:27 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: alsa-devel, Mark Brown, Simon

The patch

   ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1

has been applied to the asoc tree at

   git://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 86d5b2c20d8ec255ef7646533b81dabc935e0eff Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Tue, 17 Oct 2017 06:57:49 +0000
Subject: [PATCH] ASoC: audio-graph-scu-card: remove unnecessary route patch
 from Example 1

Example 1 is for "Sampling Rate Conversion",
sample has only 1 CPU, 1 Codec.
Thus, "codec Playback", "DAI1 Playback" route is unnecessary.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
index a10daf54aa0c..441dd6f29df1 100644
--- a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
+++ b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
@@ -43,7 +43,6 @@ Example 1. Sampling Rate Conversion
 		label = "sound-card";
 		prefix = "codec";
 		routing = "codec Playback", "DAI0 Playback",
-			  "codec Playback", "DAI1 Playback",
 			  "DAI0 Capture",   "codec Capture";
 		convert-rate = <48000>;
 
-- 
2.14.1

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

* Applied "ASoC: audio-graph-scu-card: add missing Capture routing on Example" to the asoc tree
  2017-10-17  6:57 ` [PATCH 1/2] ASoC: audio-graph-scu-card: add missing Capture routing on Example Kuninori Morimoto
@ 2017-10-21 10:27   ` Mark Brown
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2017-10-21 10:27 UTC (permalink / raw)
  To: Kuninori Morimoto; +Cc: alsa-devel, Mark Brown, Simon

The patch

   ASoC: audio-graph-scu-card: add missing Capture routing on Example

has been applied to the asoc tree at

   git://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 05c006145054a86430ed4fdd4f8c1b4139a44bee Mon Sep 17 00:00:00 2001
From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Date: Tue, 17 Oct 2017 06:57:19 +0000
Subject: [PATCH] ASoC: audio-graph-scu-card: add missing Capture routing on
 Example

Both cases have 1 Capture path.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
index 8b8afe9fcb31..a10daf54aa0c 100644
--- a/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
+++ b/Documentation/devicetree/bindings/sound/audio-graph-scu-card.txt
@@ -43,7 +43,8 @@ Example 1. Sampling Rate Conversion
 		label = "sound-card";
 		prefix = "codec";
 		routing = "codec Playback", "DAI0 Playback",
-			"codec Playback", "DAI1 Playback";
+			  "codec Playback", "DAI1 Playback",
+			  "DAI0 Capture",   "codec Capture";
 		convert-rate = <48000>;
 
 		dais = <&cpu_port>;
@@ -79,7 +80,8 @@ Example 2. 2 CPU 1 Codec (Mixing)
 		label = "sound-card";
 		prefix = "codec";
 		routing = "codec Playback", "DAI0 Playback",
-			"codec Playback", "DAI1 Playback";
+			  "codec Playback", "DAI1 Playback",
+			  "DAI0 Capture",   "codec Capture";
 		convert-rate = <48000>;
 
 		dais = <&cpu_port0
-- 
2.14.1

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

end of thread, other threads:[~2017-10-21 10:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-17  6:56 [PATCH 0/2] ASoC: audio-graph-scu-card: tidyup for Example Kuninori Morimoto
2017-10-17  6:57 ` [PATCH 1/2] ASoC: audio-graph-scu-card: add missing Capture routing on Example Kuninori Morimoto
2017-10-21 10:27   ` Applied "ASoC: audio-graph-scu-card: add missing Capture routing on Example" to the asoc tree Mark Brown
2017-10-17  6:57 ` [PATCH 2/2] ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1 Kuninori Morimoto
2017-10-21 10:27   ` Applied "ASoC: audio-graph-scu-card: remove unnecessary route patch from Example 1" 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.