diff options
| author | Nishanth Aravamudan <nacc@us.ibm.com> | 2005-09-10 03:27:15 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 13:06:34 -0400 |
| commit | 2aad5f03d97bbaf1b19f31347656de953247c7da (patch) | |
| tree | 7395663b18252a1b2b3d3d1bdf3137bfe0843bd8 | |
| parent | f6a2f3404a3b09281a264058fa8dd318bac51178 (diff) | |
[PATCH] janitor: ide/ide-cs: replace schedule_timeout() with msleep()
Uses msleep() in place of schedule_timeout() to guarantee the task delays as
expected.
Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com>
Signed-off-by: Maximilian Attems <janitor@sternwelten.at>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | drivers/ide/legacy/ide-cs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/legacy/ide-cs.c b/drivers/ide/legacy/ide-cs.c index dc0841b2721c..0ccf85fcee34 100644 --- a/drivers/ide/legacy/ide-cs.c +++ b/drivers/ide/legacy/ide-cs.c | |||
| @@ -43,6 +43,7 @@ | |||
| 43 | #include <linux/ide.h> | 43 | #include <linux/ide.h> |
| 44 | #include <linux/hdreg.h> | 44 | #include <linux/hdreg.h> |
| 45 | #include <linux/major.h> | 45 | #include <linux/major.h> |
| 46 | #include <linux/delay.h> | ||
| 46 | #include <asm/io.h> | 47 | #include <asm/io.h> |
| 47 | #include <asm/system.h> | 48 | #include <asm/system.h> |
| 48 | 49 | ||
| @@ -340,8 +341,7 @@ static void ide_config(dev_link_t *link) | |||
| 340 | break; | 341 | break; |
| 341 | } | 342 | } |
| 342 | } | 343 | } |
| 343 | __set_current_state(TASK_UNINTERRUPTIBLE); | 344 | msleep(100); |
| 344 | schedule_timeout(HZ/10); | ||
| 345 | } | 345 | } |
| 346 | 346 | ||
| 347 | if (hd < 0) { | 347 | if (hd < 0) { |
