diff options
author | Libin Yang <libin.yang@intel.com> | 2015-06-03 03:30:15 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-06-03 07:39:08 +0200 |
commit | 03b135cebc47d75ea2dc346770374ab741966955 (patch) | |
tree | 2d7d3c1353de701d837fca53499928a67c1930f5 /sound/pci/hda/patch_hdmi.c | |
parent | sound/oss: use schedule_timeout_interruptible() (diff) | |
download | linux-03b135cebc47d75ea2dc346770374ab741966955.tar.xz linux-03b135cebc47d75ea2dc346770374ab741966955.zip |
ALSA: hda - remove controller dependency on i915 power well for SKL
For SKL, only the HDMI codec is in the display power well while the
HD-A controller isn't. So the controller flag 'need_i915_power' is
not set to release the display power after probe, and the codec flag
'link_power_control' is set to request/release the display power via
bus link_power ops.
Signed-off-by: Libin Yang <libin.yang@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_hdmi.c')
-rw-r--r-- | sound/pci/hda/patch_hdmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c index 73c20c0e5d73..407978b6db66 100644 --- a/sound/pci/hda/patch_hdmi.c +++ b/sound/pci/hda/patch_hdmi.c @@ -2339,7 +2339,7 @@ static int patch_generic_hdmi(struct hda_codec *codec) * can cover the codec power request, and so need not set this flag. * For previous platforms, there is no such power well feature. */ - if (is_valleyview_plus(codec)) + if (is_valleyview_plus(codec) || is_skylake(codec)) codec->core.link_power_control = 1; if (is_haswell_plus(codec) || is_valleyview_plus(codec)) |