aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/patch_realtek.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-10-31 12:48:56 -0400
committerTakashi Iwai <tiwai@suse.de>2008-10-31 12:48:56 -0400
commit3c3e9892a1dacca2ba9e05c196ab1ea99c544360 (patch)
tree12c57ef9cc649092c06ffdf7d0a4cccac018cd65 /sound/pci/hda/patch_realtek.c
parentf9e336f65b666b8f1764d17e9b7c21c90748a37e (diff)
ALSA: hda - Re-add input-source control for Realtek
Re-added again "Input Source" control that was removed mistakenly in the previous patchset. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_realtek.c')
-rw-r--r--sound/pci/hda/patch_realtek.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index d511ce4b11ad..88e54db0582c 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -1351,6 +1351,15 @@ static struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
1351 .put = alc_cap_vol_put, \ 1351 .put = alc_cap_vol_put, \
1352 .tlv = { .c = alc_cap_vol_tlv }, \ 1352 .tlv = { .c = alc_cap_vol_tlv }, \
1353 }, \ 1353 }, \
1354 { \
1355 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1356 /* .name = "Capture Source", */ \
1357 .name = "Input Source", \
1358 .count = num, \
1359 .info = alc_mux_enum_info, \
1360 .get = alc_mux_enum_get, \
1361 .put = alc_mux_enum_put, \
1362 }, \
1354 { } /* end */ \ 1363 { } /* end */ \
1355} 1364}
1356 1365