aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-01-13 17:46:37 +0100
committerTakashi Iwai <tiwai@suse.de>2009-01-13 17:46:37 +0100
commitc107b41c485c43f15b24743e81eaab742b3c0b67 (patch)
tree39e1843127c7491d79e6bb18128f327e43cad89e /sound
parentALSA: hda - Add quirk for another HP dv5 (diff)
downloadlinux-dev-c107b41c485c43f15b24743e81eaab742b3c0b67.tar.xz
linux-dev-c107b41c485c43f15b24743e81eaab742b3c0b67.zip
ALSA: hda - Use queue_delayed_work()
Replaced the old schedule_work() with queue_delayed_work() where overlooked in the previous patches. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/hda_codec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
index 3c596da2b9b5..fdad6ae7aad4 100644
--- a/sound/pci/hda/hda_codec.c
+++ b/sound/pci/hda/hda_codec.c
@@ -2815,7 +2815,7 @@ void snd_hda_power_down(struct hda_codec *codec)
return;
if (power_save(codec)) {
codec->power_transition = 1; /* avoid reentrance */
- schedule_delayed_work(&codec->power_work,
+ queue_delayed_work(codec->bus->workq, &codec->power_work,
msecs_to_jiffies(power_save(codec) * 1000));
}
}