Skip to content

Commit

Permalink
ALSA: hda - ALC888S-VC remark to ALC886
Browse files Browse the repository at this point in the history
Signed-off-by: Kailang Yang <kailang@realtek.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Kailang Yang authored and Takashi Iwai committed Oct 17, 2011
1 parent 20ca0c3 commit 801f49d
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion sound/pci/hda/patch_realtek.c
Original file line number Diff line number Diff line change
Expand Up @@ -5671,7 +5671,11 @@ static int patch_alc662(struct hda_codec *codec)

static int patch_alc888(struct hda_codec *codec)
{
if ((alc_read_coef_idx(codec, 0) & 0x00f0)==0x0030){
int coef;

coef = alc_read_coef_idx(codec, 0);
/* For ALC887-VD ALC888S-VD */
if ((coef & 0x00f0) == 0x0030) {
kfree(codec->chip_name);
if (codec->vendor_id == 0x10ec0887)
codec->chip_name = kstrdup("ALC887-VD", GFP_KERNEL);
Expand All @@ -5683,6 +5687,18 @@ static int patch_alc888(struct hda_codec *codec)
}
return patch_alc662(codec);
}

/* For ALC888S-VC */
if (codec->vendor_id == 0x10ec0888) {
if ((coef & 0xf0f0) == 0x3020) {
kfree(codec->chip_name);
codec->chip_name = kstrdup("ALC886", GFP_KERNEL);
if (!codec->chip_name) {
alc_free(codec);
return -ENOMEM;
}
}
}
return patch_alc882(codec);
}

Expand Down

0 comments on commit 801f49d

Please sign in to comment.