diff options
author | Gabriele Mazzotta <gabriele.mzt@gmail.com> | 2016-12-24 19:50:00 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-12-28 16:13:56 +0100 |
commit | 972aa2c708703c21f14eb958b37e82aae2530e44 (patch) | |
tree | f4c0109a68545f159223122729583d0ea609f972 /sound/pci | |
parent | 1c623c2409b105c3960d60f450ccc0b37d8cb89a (diff) | |
download | linux-stable-972aa2c708703c21f14eb958b37e82aae2530e44.tar.gz linux-stable-972aa2c708703c21f14eb958b37e82aae2530e44.tar.bz2 linux-stable-972aa2c708703c21f14eb958b37e82aae2530e44.zip |
ALSA: hda - Apply ALC269_FIXUP_NO_SHUTUP on HDA_FIXUP_ACT_PROBE
Setting shutup when the action is HDA_FIXUP_ACT_PRE_PROBE might
not have the desired effect since it could be overridden by
another more generic shutup function. Prevent this by setting
the more specific shutup function on HDA_FIXUP_ACT_PROBE.
Signed-off-by: Gabriele Mazzotta <gabriele.mzt@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 9448daff9d8b..937c2bbe8b50 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -4400,7 +4400,7 @@ static void alc_no_shutup(struct hda_codec *codec) static void alc_fixup_no_shutup(struct hda_codec *codec, const struct hda_fixup *fix, int action) { - if (action == HDA_FIXUP_ACT_PRE_PROBE) { + if (action == HDA_FIXUP_ACT_PROBE) { struct alc_spec *spec = codec->spec; spec->shutup = alc_no_shutup; } |