From d4339ea6c6ab0bdf909d587bd9c5a754e362833d Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Fri, 20 Aug 1999 01:00:38 +0000 Subject: Same on the main line. --- drivers/char/dz.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/char/dz.c b/drivers/char/dz.c index c26a448e8..30f28280b 100644 --- a/drivers/char/dz.c +++ b/drivers/char/dz.c @@ -902,7 +902,7 @@ static void send_break (struct dz_serial *info, int duration) dz_out (info, DZ_TCR, tmp); - schedule_timeout(jiffies + duration); + schedule_timeout(duration); tmp &= ~mask; dz_out (info, DZ_TCR, tmp); @@ -1093,7 +1093,7 @@ static void dz_close (struct tty_struct *tty, struct file *filp) if (info->blocked_open) { if (info->close_delay) { current->state = TASK_INTERRUPTIBLE; - schedule_timeout(jiffies + info->close_delay); + schedule_timeout(info->close_delay); } wake_up_interruptible (&info->open_wait); } -- cgit v1.2.3