summaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_intel.c
diff options
context:
space:
mode:
authorTakashi Iwai2013-12-02 11:12:28 +0100
committerTakashi Iwai2013-12-02 13:23:40 +0100
commit88d071fc9a93de2916822910c927f28ed15c3a56 (patch)
treedbc30951524af2e66e8aef7c0e7c0d92113f33b6 /sound/pci/hda/hda_intel.c
parentALSA: hda - Fix bad EAPD setup for HP machines with AD1984A (diff)
downloadkernel-qcow2-linux-88d071fc9a93de2916822910c927f28ed15c3a56.tar.gz
kernel-qcow2-linux-88d071fc9a93de2916822910c927f28ed15c3a56.tar.xz
kernel-qcow2-linux-88d071fc9a93de2916822910c927f28ed15c3a56.zip
ALSA: hda - Fix complete_all() timing in deferred probes
When the probe of snd-hda-intel driver is deferred due to f/w loading or the nested module loading, complete_all() should be also delayed until the initialization really finished. Otherwise, vga-switcheroo client would start switching before the actual init is done. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_intel.c')
-rw-r--r--sound/pci/hda/hda_intel.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index c6d230193da6..27aa14007cbd 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -3876,7 +3876,8 @@ static int azx_probe(struct pci_dev *pci,
}
dev++;
- complete_all(&chip->probe_wait);
+ if (chip->disabled)
+ complete_all(&chip->probe_wait);
return 0;
out_free:
@@ -3953,10 +3954,10 @@ static int azx_probe_continue(struct azx *chip)
if ((chip->driver_caps & AZX_DCAPS_PM_RUNTIME) || chip->use_vga_switcheroo)
pm_runtime_put_noidle(&pci->dev);
- return 0;
-
out_free:
- chip->init_failed = 1;
+ if (err < 0)
+ chip->init_failed = 1;
+ complete_all(&chip->probe_wait);
return err;
}