[patch 3/8] serial/pmac_zilog: replace schedule_timeout() with msleep()
janitor_at_sternwelten.at
Date: 10/31/04
- Previous message: janitor_at_sternwelten.at: "[patch 2/8] pcmcia/yenta_socket: replace schedule_timeout() with msleep()"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: rmk+lkml@arm.linux.org.uk Date: Sun, 31 Oct 2004 00:47:05 +0200
Any comments would be appreciated.
Description: Use msleep() instead of schedule_timeout() to
guarantee the task delays as expected.
Signed-off-by: Maximilian Attems <janitor@sternwelten.at>
---
linux-2.6.10-rc1-max/drivers/serial/pmac_zilog.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff -puN drivers/serial/pmac_zilog.c~msleep-drivers_serial_pmac_zilog drivers/serial/pmac_zilog.c
--- linux-2.6.10-rc1/drivers/serial/pmac_zilog.c~msleep-drivers_serial_pmac_zilog 2004-10-24 17:05:09.000000000 +0200
+++ linux-2.6.10-rc1-max/drivers/serial/pmac_zilog.c 2004-10-24 17:05:09.000000000 +0200
@@ -949,8 +949,7 @@ static int pmz_startup(struct uart_port
*/
if (pwr_delay != 0) {
pmz_debug("pmz: delaying %d ms\n", pwr_delay);
- set_current_state(TASK_UNINTERRUPTIBLE);
- schedule_timeout((pwr_delay * HZ)/1000);
+ msleep(pwr_delay);
}
/* IrDA reset is done now */
@@ -1684,8 +1683,7 @@ static int pmz_resume(struct macio_dev *
*/
if (pwr_delay != 0) {
pmz_debug("pmz: delaying %d ms\n", pwr_delay);
- set_current_state(TASK_UNINTERRUPTIBLE);
- schedule_timeout((pwr_delay * HZ)/1000);
+ msleep(pwr_delay);
}
pmz_debug("resume, switching complete\n");
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Previous message: janitor_at_sternwelten.at: "[patch 2/8] pcmcia/yenta_socket: replace schedule_timeout() with msleep()"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
- [patch 1/8] net/xirc2ps_cs: replace Wait() with msleep()
... Use msleepinstead of Waitto guarantee the task delays ... send the line
"unsubscribe linux-kernel" in ... (Linux-Kernel) - [patch 10/21] media/cpia: replace schedule_timeout() with msleep_interruptible()
... guarantee the task delays as expected. ... send the line "unsubscribe
linux-kernel" in ... More majordomo info at http://vger.kernel.org/majordomo-info.html
... (Linux-Kernel) - [patch 3/9] block/cciss: replace schedule_timeout() with msleep_interruptible()
... to guarantee the task delays as expected. ... if (scratchpad!=
CCISS_FIRMWARE_READY) { ... send the line "unsubscribe linux-kernel" in ... (Linux-Kernel) - [patch 6/9] block/pg: replace pg_sleep() with msleep_interruptible()
... to guarantee the task delays as expected. ... The defintion of
pg_sleep ... send the line "unsubscribe linux-kernel" in ... (Linux-Kernel) - [patch 4/10] s390: schedule_timeout cleanup in ctctty
... to guarantee the task delays as expected. ... send the line "unsubscribe
linux-kernel" in ... (Linux-Kernel)