summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorLibin Yang <libin.yang@intel.com>2015-03-26 13:28:39 +0800
committerJiri Slaby <jslaby@suse.cz>2015-07-30 14:11:04 +0200
commit8098e16ab91768a357c891a9d7e3ab2c5813cd79 (patch)
tree07d8508454b5850d06169f47e72f99f05d928eca /sound
parent866b1fbbd04514c12c3b35b3daf9a2e1185762c5 (diff)
ALSA: hda_intel: apply the Seperate stream_tag for Sunrise Point
commit db48abf4367cb1f9e118defee0a37238638c2752 upstream. The total stream number of Sunrise Point's input and output stream exceeds 15, which will cause some streams do not work because of the overflow on SDxCTL.STRM field if using the legacy stream tag allocation method. This patch uses the new stream tag allocation method by add the flag AZX_DCAPS_SEPARATE_STREAM_TAG for Skylake platform. Signed-off-by: Libin Yang <libin.yang@intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_intel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 9bb71f02d848..ab4b984ef607 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -4091,7 +4091,7 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
.driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH },
/* Sunrise Point */
{ PCI_DEVICE(0x8086, 0xa170),
- .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH },
+ .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_SKYLAKE },
/* Sunrise Point-LP */
{ PCI_DEVICE(0x8086, 0x9d70),
.driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_SKYLAKE },