diff options
author | Lu, Han <han.lu@intel.com> | 2015-11-11 16:54:27 +0800 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2016-01-22 12:24:41 -0500 |
commit | 7f765fcd744a381abdaf3c2a2307b95e8f5c0f63 (patch) | |
tree | 3d81e09a0787fdab7a0abf386f427e131ba8dd2f | |
parent | 27327566b15132cfecc1ef056c26ea8ccceabd6e (diff) | |
download | lwn-7f765fcd744a381abdaf3c2a2307b95e8f5c0f63.tar.gz lwn-7f765fcd744a381abdaf3c2a2307b95e8f5c0f63.zip |
ALSA: hda/hdmi - apply Skylake fix-ups to Broxton display codec
[ Upstream commit e2656412f2a7343ecfd13eb74bac0a6e6e9c5aad ]
Broxton and Skylake have the same behavior on display audio. So this patch
applys Skylake fix-ups to Broxton.
Signed-off-by: Lu, Han <han.lu@intel.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
-rw-r--r-- | sound/pci/hda/patch_hdmi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c index b422e406a9cb..99e952293498 100644 --- a/sound/pci/hda/patch_hdmi.c +++ b/sound/pci/hda/patch_hdmi.c @@ -48,8 +48,9 @@ MODULE_PARM_DESC(static_hdmi_pcm, "Don't restrict PCM parameters per ELD info"); #define is_haswell(codec) ((codec)->vendor_id == 0x80862807) #define is_broadwell(codec) ((codec)->vendor_id == 0x80862808) #define is_skylake(codec) ((codec)->vendor_id == 0x80862809) +#define is_broxton(codec) ((codec)->vendor_id == 0x8086280a) #define is_haswell_plus(codec) (is_haswell(codec) || is_broadwell(codec) \ - || is_skylake(codec)) + || is_skylake(codec) || is_broxton(codec)) #define is_valleyview(codec) ((codec)->vendor_id == 0x80862882) #define is_cherryview(codec) ((codec)->vendor_id == 0x80862883) |