diff options
author | Lydia Wang <lydiawang@viatech.com.cn> | 2011-03-22 04:25:56 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-03-22 07:56:01 -0400 |
commit | 970f630f5adcefb2841338929e209d970001d919 (patch) | |
tree | c53baca1944063fe7236d16ad3ec92318e52fe32 | |
parent | 0341ccd7557fecafe6a79c55158670cf629d269e (diff) |
ALSA: hda - VIA: Correct stream names for VT1818S
Correct stream names of analog playback and capture streams
for VT1818S.
Signed-off-by: Lydia Wang <lydiawang@viatech.com.cn>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/hda/patch_via.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c index 269bb365752b..7e317f933a06 100644 --- a/sound/pci/hda/patch_via.c +++ b/sound/pci/hda/patch_via.c | |||
@@ -4173,6 +4173,11 @@ static int patch_vt1708S(struct hda_codec *codec) | |||
4173 | spec->stream_name_analog = "VT1708BCE Analog"; | 4173 | spec->stream_name_analog = "VT1708BCE Analog"; |
4174 | spec->stream_name_digital = "VT1708BCE Digital"; | 4174 | spec->stream_name_digital = "VT1708BCE Digital"; |
4175 | } | 4175 | } |
4176 | /* correct names for VT1818S */ | ||
4177 | if (codec->vendor_id == 0x11060440) { | ||
4178 | spec->stream_name_analog = "VT1818S Analog"; | ||
4179 | spec->stream_name_digital = "VT1818S Digital"; | ||
4180 | } | ||
4176 | return 0; | 4181 | return 0; |
4177 | } | 4182 | } |
4178 | 4183 | ||