* [PATCH 1/4] ASoC: Convert saarb to table based DAPM init
@ 2011-12-31 0:40 Axel Lin
2011-12-31 0:44 ` [PATCH 2/4] ASoC: Convert spitz to table based DAPM and control init Axel Lin
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Axel Lin @ 2011-12-31 0:40 UTC (permalink / raw)
To: alsa-devel; +Cc: Mark Brown, Eric Miao, Haojian Zhuang, Liam Girdwood
Also remove a unused ret variable to silence the build warning.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/pxa/saarb.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/sound/soc/pxa/saarb.c b/sound/soc/pxa/saarb.c
index b2be225..c34146b 100644
--- a/sound/soc/pxa/saarb.c
+++ b/sound/soc/pxa/saarb.c
@@ -51,7 +51,7 @@ static const struct snd_soc_dapm_widget saarb_dapm_widgets[] = {
};
/* saarb machine audio map */
-static const struct snd_soc_dapm_route audio_map[] = {
+static const struct snd_soc_dapm_route saarb_audio_map[] = {
{"Headset Stereophone", NULL, "HS1"},
{"Headset Stereophone", NULL, "HS2"},
@@ -121,17 +121,17 @@ static struct snd_soc_card snd_soc_card_saarb = {
.owner = THIS_MODULE,
.dai_link = saarb_dai,
.num_links = ARRAY_SIZE(saarb_dai),
+
+ .dapm_widgets = saarb_dapm_widgets,
+ .num_dapm_widgets = ARRAY_SIZE(saarb_dapm_widgets),
+ .dapm_routes = saarb_audio_map,
+ .num_dapm_routes = ARRAY_SIZE(saarb_audio_map),
};
static int saarb_pm860x_init(struct snd_soc_pcm_runtime *rtd)
{
struct snd_soc_codec *codec = rtd->codec;
struct snd_soc_dapm_context *dapm = &codec->dapm;
- int ret;
-
- snd_soc_dapm_new_controls(dapm, saarb_dapm_widgets,
- ARRAY_SIZE(saarb_dapm_widgets));
- snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
/* connected pins */
snd_soc_dapm_enable_pin(dapm, "Ext Speaker");
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/4] ASoC: Convert spitz to table based DAPM and control init
2011-12-31 0:40 [PATCH 1/4] ASoC: Convert saarb to table based DAPM init Axel Lin
@ 2011-12-31 0:44 ` Axel Lin
2011-12-31 0:45 ` [PATCH 3/4] ASoC: Convert tavorevb3 to table based DAPM init Axel Lin
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Axel Lin @ 2011-12-31 0:44 UTC (permalink / raw)
To: alsa-devel; +Cc: Mark Brown, Eric Miao, Haojian Zhuang, Liam Girdwood
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/pxa/spitz.c | 23 ++++++++---------------
1 files changed, 8 insertions(+), 15 deletions(-)
diff --git a/sound/soc/pxa/spitz.c b/sound/soc/pxa/spitz.c
index 76288ad..90c5245 100644
--- a/sound/soc/pxa/spitz.c
+++ b/sound/soc/pxa/spitz.c
@@ -222,7 +222,7 @@ static const struct snd_soc_dapm_widget wm8750_dapm_widgets[] = {
};
/* Spitz machine audio_map */
-static const struct snd_soc_dapm_route audio_map[] = {
+static const struct snd_soc_dapm_route spitz_audio_map[] = {
/* headphone connected to LOUT1, ROUT1 */
{"Headphone Jack", NULL, "LOUT1"},
@@ -265,7 +265,6 @@ static int spitz_wm8750_init(struct snd_soc_pcm_runtime *rtd)
{
struct snd_soc_codec *codec = rtd->codec;
struct snd_soc_dapm_context *dapm = &codec->dapm;
- int err;
/* NC codec pins */
snd_soc_dapm_nc_pin(dapm, "RINPUT1");
@@ -276,19 +275,6 @@ static int spitz_wm8750_init(struct snd_soc_pcm_runtime *rtd)
snd_soc_dapm_nc_pin(dapm, "OUT3");
snd_soc_dapm_nc_pin(dapm, "MONO1");
- /* Add spitz specific controls */
- err = snd_soc_add_controls(codec, wm8750_spitz_controls,
- ARRAY_SIZE(wm8750_spitz_controls));
- if (err < 0)
- return err;
-
- /* Add spitz specific widgets */
- snd_soc_dapm_new_controls(dapm, wm8750_dapm_widgets,
- ARRAY_SIZE(wm8750_dapm_widgets));
-
- /* Set up spitz specific audio paths */
- snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
-
return 0;
}
@@ -312,6 +298,13 @@ static struct snd_soc_card snd_soc_spitz = {
.owner = THIS_MODULE,
.dai_link = &spitz_dai,
.num_links = 1,
+
+ .controls = wm8750_spitz_controls,
+ .num_controls = ARRAY_SIZE(wm8750_spitz_controls),
+ .dapm_widgets = wm8750_dapm_widgets,
+ .num_dapm_widgets = ARRAY_SIZE(wm8750_dapm_widgets),
+ .dapm_routes = spitz_audio_map,
+ .num_dapm_routes = ARRAY_SIZE(spitz_audio_map),
};
static struct platform_device *spitz_snd_device;
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/4] ASoC: Convert tavorevb3 to table based DAPM init
2011-12-31 0:40 [PATCH 1/4] ASoC: Convert saarb to table based DAPM init Axel Lin
2011-12-31 0:44 ` [PATCH 2/4] ASoC: Convert spitz to table based DAPM and control init Axel Lin
@ 2011-12-31 0:45 ` Axel Lin
2011-12-31 0:45 ` [PATCH 4/4] ASoC: Convert z2 " Axel Lin
2012-01-02 12:44 ` [PATCH 1/4] ASoC: Convert saarb " Mark Brown
3 siblings, 0 replies; 5+ messages in thread
From: Axel Lin @ 2011-12-31 0:45 UTC (permalink / raw)
To: alsa-devel; +Cc: Mark Brown, Eric Miao, Haojian Zhuang, Liam Girdwood
Also remove a unsued ret variable to silence the build warning.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/pxa/tavorevb3.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/sound/soc/pxa/tavorevb3.c b/sound/soc/pxa/tavorevb3.c
index 46ac1fe..8b5ab8f 100644
--- a/sound/soc/pxa/tavorevb3.c
+++ b/sound/soc/pxa/tavorevb3.c
@@ -51,7 +51,7 @@ static const struct snd_soc_dapm_widget evb3_dapm_widgets[] = {
};
/* tavorevb3 machine audio map */
-static const struct snd_soc_dapm_route audio_map[] = {
+static const struct snd_soc_dapm_route evb3_audio_map[] = {
{"Headset Stereophone", NULL, "HS1"},
{"Headset Stereophone", NULL, "HS2"},
@@ -120,17 +120,17 @@ static struct snd_soc_card snd_soc_card_evb3 = {
.owner = THIS_MODULE,
.dai_link = evb3_dai,
.num_links = ARRAY_SIZE(evb3_dai),
+
+ .dapm_widgets = evb3_dapm_widgets,
+ .num_dapm_widgets = ARRAY_SIZE(evb3_dapm_widgets),
+ .dapm_routes = evb3_audio_map,
+ .num_dapm_routes = ARRAY_SIZE(evb3_audio_map),
};
static int evb3_pm860x_init(struct snd_soc_pcm_runtime *rtd)
{
struct snd_soc_codec *codec = rtd->codec;
struct snd_soc_dapm_context *dapm = &codec->dapm;
- int ret;
-
- snd_soc_dapm_new_controls(dapm, evb3_dapm_widgets,
- ARRAY_SIZE(evb3_dapm_widgets));
- snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
/* connected pins */
snd_soc_dapm_enable_pin(dapm, "Ext Speaker");
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 4/4] ASoC: Convert z2 to table based DAPM init
2011-12-31 0:40 [PATCH 1/4] ASoC: Convert saarb to table based DAPM init Axel Lin
2011-12-31 0:44 ` [PATCH 2/4] ASoC: Convert spitz to table based DAPM and control init Axel Lin
2011-12-31 0:45 ` [PATCH 3/4] ASoC: Convert tavorevb3 to table based DAPM init Axel Lin
@ 2011-12-31 0:45 ` Axel Lin
2012-01-02 12:44 ` [PATCH 1/4] ASoC: Convert saarb " Mark Brown
3 siblings, 0 replies; 5+ messages in thread
From: Axel Lin @ 2011-12-31 0:45 UTC (permalink / raw)
To: alsa-devel; +Cc: Mark Brown, Eric Miao, Haojian Zhuang, Liam Girdwood
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/pxa/z2.c | 14 ++++++--------
1 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/sound/soc/pxa/z2.c b/sound/soc/pxa/z2.c
index e8f15ce..76ccb17 100644
--- a/sound/soc/pxa/z2.c
+++ b/sound/soc/pxa/z2.c
@@ -112,7 +112,7 @@ static const struct snd_soc_dapm_widget wm8750_dapm_widgets[] = {
};
/* Z2 machine audio_map */
-static const struct snd_soc_dapm_route audio_map[] = {
+static const struct snd_soc_dapm_route z2_audio_map[] = {
/* headphone connected to LOUT1, ROUT1 */
{"Headphone Jack", NULL, "LOUT1"},
@@ -142,13 +142,6 @@ static int z2_wm8750_init(struct snd_soc_pcm_runtime *rtd)
snd_soc_dapm_disable_pin(dapm, "OUT3");
snd_soc_dapm_disable_pin(dapm, "MONO1");
- /* Add z2 specific widgets */
- snd_soc_dapm_new_controls(dapm, wm8750_dapm_widgets,
- ARRAY_SIZE(wm8750_dapm_widgets));
-
- /* Set up z2 specific audio paths */
- snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
-
/* Jack detection API stuff */
ret = snd_soc_jack_new(codec, "Headset Jack", SND_JACK_HEADSET,
&hs_jack);
@@ -195,6 +188,11 @@ static struct snd_soc_card snd_soc_z2 = {
.owner = THIS_MODULE,
.dai_link = &z2_dai,
.num_links = 1,
+
+ .dapm_widgets = wm8750_dapm_widgets,
+ .num_dapm_widgets = ARRAY_SIZE(wm8750_dapm_widgets),
+ .dapm_routes = z2_audio_map,
+ .num_dapm_routes = ARRAY_SIZE(z2_audio_map),
};
static struct platform_device *z2_snd_device;
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 1/4] ASoC: Convert saarb to table based DAPM init
2011-12-31 0:40 [PATCH 1/4] ASoC: Convert saarb to table based DAPM init Axel Lin
` (2 preceding siblings ...)
2011-12-31 0:45 ` [PATCH 4/4] ASoC: Convert z2 " Axel Lin
@ 2012-01-02 12:44 ` Mark Brown
3 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2012-01-02 12:44 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Eric Miao, Haojian Zhuang, Liam Girdwood
On Sat, Dec 31, 2011 at 08:40:30AM +0800, Axel Lin wrote:
> Also remove a unused ret variable to silence the build warning.
Applied all, thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-02 12:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-31 0:40 [PATCH 1/4] ASoC: Convert saarb to table based DAPM init Axel Lin
2011-12-31 0:44 ` [PATCH 2/4] ASoC: Convert spitz to table based DAPM and control init Axel Lin
2011-12-31 0:45 ` [PATCH 3/4] ASoC: Convert tavorevb3 to table based DAPM init Axel Lin
2011-12-31 0:45 ` [PATCH 4/4] ASoC: Convert z2 " Axel Lin
2012-01-02 12:44 ` [PATCH 1/4] ASoC: Convert saarb " Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).