patch-2.1.127 linux/drivers/sound/es1370.c
Next file: linux/drivers/sound/es1371.c
Previous file: linux/drivers/sound/dmasound.c
Back to the patch index
Back to the overall index
- Lines: 47
- Date:
Thu Nov 5 09:58:46 1998
- Orig file:
v2.1.126/linux/drivers/sound/es1370.c
- Orig date:
Fri Oct 23 22:01:21 1998
diff -u --recursive --new-file v2.1.126/linux/drivers/sound/es1370.c linux/drivers/sound/es1370.c
@@ -101,6 +101,7 @@
/*****************************************************************************/
+#include <linux/config.h>
#include <linux/version.h>
#include <linux/module.h>
#include <linux/string.h>
@@ -1016,11 +1017,8 @@
}
tmo = (count * HZ) / dac1_samplerate[(s->ctrl & CTRL_WTSRSEL) >> CTRL_SH_WTSRSEL];
tmo >>= sample_shift[(s->sctrl & SCTRL_P1FMT) >> SCTRL_SH_P1FMT];
- current->timeout = jiffies + (tmo ? tmo : 1);
- schedule();
- if (tmo && !current->timeout)
+ if (!schedule_timeout(tmo ? : 1) && tmo)
printk(KERN_DEBUG "es1370: dma timed out??\n");
- current->timeout = 0;
}
remove_wait_queue(&s->dma_dac1.wait, &wait);
current->state = TASK_RUNNING;
@@ -1054,11 +1052,8 @@
}
tmo = (count * HZ) / DAC2_DIVTOSR((s->ctrl & CTRL_PCLKDIV) >> CTRL_SH_PCLKDIV);
tmo >>= sample_shift[(s->sctrl & SCTRL_P2FMT) >> SCTRL_SH_P2FMT];
- current->timeout = jiffies + (tmo ? tmo : 1);
- schedule();
- if (tmo && !current->timeout)
+ if (!schedule_timeout(tmo ? : 1) && tmo)
printk(KERN_DEBUG "es1370: dma timed out??\n");
- current->timeout = 0;
}
remove_wait_queue(&s->dma_dac2.wait, &wait);
current->state = TASK_RUNNING;
@@ -2200,11 +2195,8 @@
return -EBUSY;
}
tmo = (count * HZ) / 3100;
- current->timeout = tmo ? jiffies + tmo : 0;
- schedule();
- if (tmo && !current->timeout)
+ if (!schedule_timeout(tmo ? : 1) && tmo)
printk(KERN_DEBUG "es1370: midi timed out??\n");
- current->timeout = 0;
}
remove_wait_queue(&s->midi.owait, &wait);
current->state = TASK_RUNNING;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov