]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
ASoC: Convert z2 to table based DAPM init
authorAxel Lin <axel.lin@gmail.com>
Sat, 31 Dec 2011 00:45:49 +0000 (08:45 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 2 Jan 2012 13:08:38 +0000 (13:08 +0000)
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/pxa/z2.c

index e8f15ce8374956813db376c1801ce13d6005603b..76ccb172d0a77ed23be7b1fc441e388ce41b57fe 100644 (file)
@@ -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;