diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-02-27 22:43:26 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-03-03 11:37:57 +0100 |
commit | 2f35c630f7d49efdef29b58d81ed2531ddd916d9 (patch) | |
tree | cc3bc76348619756d7eaece66c2d0d44857acc53 /sound/pci/hda/patch_ca0132.c | |
parent | bcd96557bd0ab1129fcdde073d5700aed8fcb942 (diff) | |
download | lwn-2f35c630f7d49efdef29b58d81ed2531ddd916d9.tar.gz lwn-2f35c630f7d49efdef29b58d81ed2531ddd916d9.zip |
ALSA: hda - Use standard workqueue for unsol and jack events
The events that are handled by HD-audio drivers are no frequent and
urgent ones, so we can use the standard workqueue without any problem
nowadays.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/patch_ca0132.c')
-rw-r--r-- | sound/pci/hda/patch_ca0132.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_ca0132.c b/sound/pci/hda/patch_ca0132.c index 555781fad26f..72d20652df50 100644 --- a/sound/pci/hda/patch_ca0132.c +++ b/sound/pci/hda/patch_ca0132.c @@ -4410,8 +4410,7 @@ static void hp_callback(struct hda_codec *codec, struct hda_jack_callback *cb) * state machine run. */ cancel_delayed_work_sync(&spec->unsol_hp_work); - queue_delayed_work(codec->bus->workq, &spec->unsol_hp_work, - msecs_to_jiffies(500)); + schedule_delayed_work(&spec->unsol_hp_work, msecs_to_jiffies(500)); cb->tbl->block_report = 1; } |