diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-01-04 16:03:48 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-01-04 16:03:48 +0000 |
commit | 78c388aed2b7184182c08428db1de6c872d815f5 (patch) | |
tree | 4b2003b1b4ceb241a17faa995da8dd1004bb8e45 /drivers/sound/maui.c | |
parent | eb7a5bf93aaa4be1d7c6181100ab7639e74d67f7 (diff) |
Merge with Linux 2.1.131 and more MIPS goodies.
(Did I mention that CVS is buggy ...)
Diffstat (limited to 'drivers/sound/maui.c')
-rw-r--r-- | drivers/sound/maui.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/sound/maui.c b/drivers/sound/maui.c index baf770a96..d6b12e07b 100644 --- a/drivers/sound/maui.c +++ b/drivers/sound/maui.c @@ -81,10 +81,8 @@ static int maui_wait(int mask) { if (inb(HOST_STAT_PORT) & mask) return 1; - current->timeout = jiffies + HZ / 10; current->state = TASK_INTERRUPTIBLE; - schedule(); - current->timeout = 0; + schedule_timeout(HZ / 10); if (signal_pending(current)) return 0; } |