diff options
author | Takashi Iwai <tiwai@suse.de> | 2014-09-02 07:21:56 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-05 14:54:08 -0700 |
commit | 37a86af862cde5caf76ac189479268966b47c9ad (patch) | |
tree | 46637e61360b371afa7fe45a9b6bfb82af027e3c /sound | |
parent | b2a014bc3d20aab7789c92c7549b98b9e0c34383 (diff) | |
download | linux-3.10-37a86af862cde5caf76ac189479268966b47c9ad.tar.gz linux-3.10-37a86af862cde5caf76ac189479268966b47c9ad.tar.bz2 linux-3.10-37a86af862cde5caf76ac189479268966b47c9ad.zip |
ALSA: hda - Fix COEF setups for ALC1150 codec
commit acf08081adb5e8fe0519eb97bb49797ef52614d6 upstream.
ALC1150 codec seems to need the COEF- and PLL-setups just like its
compatible ALC882 codec. Some machines (e.g. SunMicro X10SAT) show
the problem like too low output volumes unless the COEF setup is
applied.
Reported-and-tested-by: Dana Goyette <danagoyette@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 593090e5bd7..4008034b6eb 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -318,6 +318,7 @@ static void alc_auto_init_amp(struct hda_codec *codec, int type) case 0x10ec0885: case 0x10ec0887: /*case 0x10ec0889:*/ /* this causes an SPDIF problem */ + case 0x10ec0900: alc889_coef_init(codec); break; case 0x10ec0888: @@ -2252,6 +2253,7 @@ static int patch_alc882(struct hda_codec *codec) switch (codec->vendor_id) { case 0x10ec0882: case 0x10ec0885: + case 0x10ec0900: break; default: /* ALC883 and variants */ |