[PATCH] char/ds1620: use msleep() instead of schedule_timeout()
authorDomen Puncer <domen@coderock.org>
Sat, 25 Jun 2005 21:58:41 +0000 (14:58 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 25 Jun 2005 23:24:57 +0000 (16:24 -0700)
commitd8eddb620499dc638aeb4d5d3751974ca697ab39
tree50ae4be7b9018c1136893852bec208c40061415f
parentd2a457cf26020fb7aa992915388001eb983d0aa8
[PATCH] char/ds1620: use msleep() instead of schedule_timeout()

Not sure why any driver needs to sleep for *two* ticks, so let's fix it.

Use msleep() instead of schedule_timeout() to guarantee the task delays as
expected.  Signals are never checked for by the callers or in the function
itself, so use TASK_UNINTERRUPTIBLE instead of TASK_INTERRUPTIBLE.  The
delay is presumed to have been written when HZ==100, and thus has been
multiplied by 10 to pass to msleep().

Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com>
Signed-off-by: Domen Puncer <domen@coderock.org>
Acked-by: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/char/ds1620.c