Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283845
b: refs/heads/master
c: f2e2026
h: refs/heads/master
i:
  283843: 049cd45
v: v3
  • Loading branch information
Mark Brown committed Dec 2, 2011
1 parent 112509f commit 39e5d98
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3631e8d43e385e851f88637244a287433246c097
refs/heads/master: f2e2026c98b74028b55901711c5df98e6d2ad8c6
15 changes: 15 additions & 0 deletions trunk/sound/soc/samsung/littlemill.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,11 @@ static struct snd_soc_dapm_route audio_paths[] = {
{ "Headphone", NULL, "HPOUT1R" },
};

static struct snd_soc_jack littlemill_headset;

static int littlemill_late_probe(struct snd_soc_card *card)
{
struct snd_soc_codec *codec = card->rtd[0].codec;
struct snd_soc_dai *codec_dai = card->rtd[0].codec_dai;
int ret;

Expand All @@ -164,6 +167,18 @@ static int littlemill_late_probe(struct snd_soc_card *card)
if (ret < 0)
return ret;

ret = snd_soc_jack_new(codec, "Headset",
SND_JACK_HEADSET | SND_JACK_MECHANICAL |
SND_JACK_BTN_0 | SND_JACK_BTN_1 |
SND_JACK_BTN_2 | SND_JACK_BTN_3 |
SND_JACK_BTN_4 | SND_JACK_BTN_5,
&littlemill_headset);
if (ret)
return ret;

/* This will check device compatibility itself */
wm8958_mic_detect(codec, &littlemill_headset, NULL, NULL);

return 0;
}

Expand Down

0 comments on commit 39e5d98

Please sign in to comment.