Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284076
b: refs/heads/master
c: 3c3f51f
h: refs/heads/master
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Jan 2, 2012
1 parent cd74556 commit ce1fa27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1a2dbcbe0491bdfd4fc2484a9853a019f9e21a9c
refs/heads/master: 3c3f51f6a37ff9c3f8ffef2ab600d1482a9f30c8
14 changes: 6 additions & 8 deletions trunk/sound/soc/pxa/z2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit ce1fa27

Please sign in to comment.