* [PATCH 1/3] ASoC: wm5110: Set symmetric samplebits on AIFs
@ 2014-07-22 10:50 Richard Fitzgerald
2014-07-22 10:51 ` [PATCH 2/3] ASoC: wm5102: " Richard Fitzgerald
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Richard Fitzgerald @ 2014-07-22 10:50 UTC (permalink / raw)
To: perex, tiwai, broonie
Cc: lgirdwood, Li.Xiubo, lars, patches, alsa-devel, linux-kernel
Different playback and capture bits-per-sample
are not supported on the AIFs
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
---
sound/soc/codecs/wm5110.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/sound/soc/codecs/wm5110.c b/sound/soc/codecs/wm5110.c
index 62ef544..2f2ec26 100644
--- a/sound/soc/codecs/wm5110.c
+++ b/sound/soc/codecs/wm5110.c
@@ -1485,6 +1485,7 @@ static struct snd_soc_dai_driver wm5110_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm5110-aif2",
@@ -1506,6 +1507,7 @@ static struct snd_soc_dai_driver wm5110_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm5110-aif3",
@@ -1527,6 +1529,7 @@ static struct snd_soc_dai_driver wm5110_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm5110-slim1",
--
1.7.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/3] ASoC: wm5102: Set symmetric samplebits on AIFs
2014-07-22 10:50 [PATCH 1/3] ASoC: wm5110: Set symmetric samplebits on AIFs Richard Fitzgerald
@ 2014-07-22 10:51 ` Richard Fitzgerald
2014-07-22 10:52 ` [PATCH 3/3] ASoC: wm8997: " Richard Fitzgerald
2014-07-22 22:21 ` [PATCH 1/3] ASoC: wm5110: " Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Richard Fitzgerald @ 2014-07-22 10:51 UTC (permalink / raw)
To: perex, tiwai, broonie
Cc: alsa-devel, lars, patches, linux-kernel, lgirdwood, Li.Xiubo
Different playback and capture bits-per-sample
are not supported on the AIFs
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
---
sound/soc/codecs/wm5102.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/sound/soc/codecs/wm5102.c b/sound/soc/codecs/wm5102.c
index fa24d55..f602349 100644
--- a/sound/soc/codecs/wm5102.c
+++ b/sound/soc/codecs/wm5102.c
@@ -1715,6 +1715,7 @@ static struct snd_soc_dai_driver wm5102_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm5102-aif2",
@@ -1736,6 +1737,7 @@ static struct snd_soc_dai_driver wm5102_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm5102-aif3",
@@ -1757,6 +1759,7 @@ static struct snd_soc_dai_driver wm5102_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm5102-slim1",
--
1.7.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 3/3] ASoC: wm8997: Set symmetric samplebits on AIFs
2014-07-22 10:50 [PATCH 1/3] ASoC: wm5110: Set symmetric samplebits on AIFs Richard Fitzgerald
2014-07-22 10:51 ` [PATCH 2/3] ASoC: wm5102: " Richard Fitzgerald
@ 2014-07-22 10:52 ` Richard Fitzgerald
2014-07-22 22:21 ` [PATCH 1/3] ASoC: wm5110: " Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Richard Fitzgerald @ 2014-07-22 10:52 UTC (permalink / raw)
To: perex, tiwai, broonie
Cc: alsa-devel, lars, patches, linux-kernel, lgirdwood, Li.Xiubo
Different playback and capture bits-per-sample
are not supported on the AIFs
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
---
sound/soc/codecs/wm8997.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sound/soc/codecs/wm8997.c b/sound/soc/codecs/wm8997.c
index bb9b47b..ab33fe5 100644
--- a/sound/soc/codecs/wm8997.c
+++ b/sound/soc/codecs/wm8997.c
@@ -967,6 +967,7 @@ static struct snd_soc_dai_driver wm8997_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm8997-aif2",
@@ -988,6 +989,7 @@ static struct snd_soc_dai_driver wm8997_dai[] = {
},
.ops = &arizona_dai_ops,
.symmetric_rates = 1,
+ .symmetric_samplebits = 1,
},
{
.name = "wm8997-slim1",
--
1.7.2.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 1/3] ASoC: wm5110: Set symmetric samplebits on AIFs
2014-07-22 10:50 [PATCH 1/3] ASoC: wm5110: Set symmetric samplebits on AIFs Richard Fitzgerald
2014-07-22 10:51 ` [PATCH 2/3] ASoC: wm5102: " Richard Fitzgerald
2014-07-22 10:52 ` [PATCH 3/3] ASoC: wm8997: " Richard Fitzgerald
@ 2014-07-22 22:21 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2014-07-22 22:21 UTC (permalink / raw)
To: Richard Fitzgerald
Cc: perex, tiwai, lgirdwood, Li.Xiubo, lars, patches, alsa-devel,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 171 bytes --]
On Tue, Jul 22, 2014 at 11:50:22AM +0100, Richard Fitzgerald wrote:
> Different playback and capture bits-per-sample
> are not supported on the AIFs
Applied all, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-07-22 22:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-22 10:50 [PATCH 1/3] ASoC: wm5110: Set symmetric samplebits on AIFs Richard Fitzgerald
2014-07-22 10:51 ` [PATCH 2/3] ASoC: wm5102: " Richard Fitzgerald
2014-07-22 10:52 ` [PATCH 3/3] ASoC: wm8997: " Richard Fitzgerald
2014-07-22 22:21 ` [PATCH 1/3] ASoC: wm5110: " Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox