diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-02-26 05:56:35 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-04-24 06:00:15 -0400 |
commit | b26451c059e741ec5e3389f7758627cb094b3766 (patch) | |
tree | 786dfe81666b0adc6242099ae722e76a5d4cb279 /sound/pci/hda | |
parent | aea7bb0a6ff5e751ef611ba9c1146c3c8489f25e (diff) |
[ALSA] hda-codec - Add docking-station mic input for Thinkpad X61
Added the docking-stationc mic input to the capture source list
for Thinkpad X61.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda')
-rw-r--r-- | sound/pci/hda/patch_analog.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c index e0f3559f8b13..20446e320b2c 100644 --- a/sound/pci/hda/patch_analog.c +++ b/sound/pci/hda/patch_analog.c | |||
@@ -3188,11 +3188,12 @@ static int patch_ad1884(struct hda_codec *codec) | |||
3188 | * Lenovo Thinkpad T61/X61 | 3188 | * Lenovo Thinkpad T61/X61 |
3189 | */ | 3189 | */ |
3190 | static struct hda_input_mux ad1984_thinkpad_capture_source = { | 3190 | static struct hda_input_mux ad1984_thinkpad_capture_source = { |
3191 | .num_items = 3, | 3191 | .num_items = 4, |
3192 | .items = { | 3192 | .items = { |
3193 | { "Mic", 0x0 }, | 3193 | { "Mic", 0x0 }, |
3194 | { "Internal Mic", 0x1 }, | 3194 | { "Internal Mic", 0x1 }, |
3195 | { "Mix", 0x3 }, | 3195 | { "Mix", 0x3 }, |
3196 | { "Docking-Station", 0x4 }, | ||
3196 | }, | 3197 | }, |
3197 | }; | 3198 | }; |
3198 | 3199 | ||