aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/pxa
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-12-30 19:40:30 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-01-02 08:08:36 -0500
commit38b437be0b16517c8b6db66d82d63f5c20927116 (patch)
tree24fb8f89e1d17efeb9a11ca752239def8661f4f9 /sound/soc/pxa
parent36c1b400188266be737392c1ce9b74e3e7136be2 (diff)
ASoC: Convert saarb to table based DAPM init
Also remove a unused ret variable to silence the build warning. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/pxa')
-rw-r--r--sound/soc/pxa/saarb.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sound/soc/pxa/saarb.c b/sound/soc/pxa/saarb.c
index b2be225b1463..c34146b776b4 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[] = {
51}; 51};
52 52
53/* saarb machine audio map */ 53/* saarb machine audio map */
54static const struct snd_soc_dapm_route audio_map[] = { 54static const struct snd_soc_dapm_route saarb_audio_map[] = {
55 {"Headset Stereophone", NULL, "HS1"}, 55 {"Headset Stereophone", NULL, "HS1"},
56 {"Headset Stereophone", NULL, "HS2"}, 56 {"Headset Stereophone", NULL, "HS2"},
57 57
@@ -121,17 +121,17 @@ static struct snd_soc_card snd_soc_card_saarb = {
121 .owner = THIS_MODULE, 121 .owner = THIS_MODULE,
122 .dai_link = saarb_dai, 122 .dai_link = saarb_dai,
123 .num_links = ARRAY_SIZE(saarb_dai), 123 .num_links = ARRAY_SIZE(saarb_dai),
124
125 .dapm_widgets = saarb_dapm_widgets,
126 .num_dapm_widgets = ARRAY_SIZE(saarb_dapm_widgets),
127 .dapm_routes = saarb_audio_map,
128 .num_dapm_routes = ARRAY_SIZE(saarb_audio_map),
124}; 129};
125 130
126static int saarb_pm860x_init(struct snd_soc_pcm_runtime *rtd) 131static int saarb_pm860x_init(struct snd_soc_pcm_runtime *rtd)
127{ 132{
128 struct snd_soc_codec *codec = rtd->codec; 133 struct snd_soc_codec *codec = rtd->codec;
129 struct snd_soc_dapm_context *dapm = &codec->dapm; 134 struct snd_soc_dapm_context *dapm = &codec->dapm;
130 int ret;
131
132 snd_soc_dapm_new_controls(dapm, saarb_dapm_widgets,
133 ARRAY_SIZE(saarb_dapm_widgets));
134 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
135 135
136 /* connected pins */ 136 /* connected pins */
137 snd_soc_dapm_enable_pin(dapm, "Ext Speaker"); 137 snd_soc_dapm_enable_pin(dapm, "Ext Speaker");