Skip to content

Commit c7cd0ef

Browse files
committed
ALSA: hda - Fix path power activation
The widget power-saving code tries to turn up/down the power of each widget in the I/O paths that are modified at each jack plug/unplug. The recent report revealed that the power activation leaves some widgets unpowered after plugging. This is because snd_hda_activate_path() turns on path->active flag at the end of the function while the path power management is done before that. Then it's regarded as if nothing is active, and the driver turns off the power. The fix is simply to set the flag at the beginning of the function, before trying to power up. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=102521 Cc: <stable@vger.kernel.org> [v4.1+] Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent 9d2b48f commit c7cd0ef

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

sound/pci/hda/hda_generic.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -884,8 +884,7 @@ void snd_hda_activate_path(struct hda_codec *codec, struct nid_path *path,
884884
struct hda_gen_spec *spec = codec->spec;
885885
int i;
886886

887-
if (!enable)
888-
path->active = false;
887+
path->active = enable;
889888

890889
/* make sure the widget is powered up */
891890
if (enable && (spec->power_down_unused || codec->power_save_node))
@@ -903,9 +902,6 @@ void snd_hda_activate_path(struct hda_codec *codec, struct nid_path *path,
903902
if (has_amp_out(codec, path, i))
904903
activate_amp_out(codec, path, i, enable);
905904
}
906-
907-
if (enable)
908-
path->active = true;
909905
}
910906
EXPORT_SYMBOL_GPL(snd_hda_activate_path);
911907

0 commit comments

Comments
 (0)