diff options
author | Nishanth Aravamudan <nacc@us.ibm.com> | 2005-11-07 04:01:17 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:53:57 -0500 |
commit | 12621a163b78d775a95dea60357bc90e58e1a3aa (patch) | |
tree | fc06cefe67db4e54f737393b420b7b0529608d5b /drivers/macintosh/therm_pm72.c | |
parent | 24763c48a3c9cdf0a138038b51a7fca65859cd78 (diff) |
[PATCH] drivers/macintosh: fix-up schedule_timeout() usage
Use schedule_timeout_interruptible() instead of
set_current_state()/schedule_timeout() to reduce kernel size.
Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/macintosh/therm_pm72.c')
-rw-r--r-- | drivers/macintosh/therm_pm72.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/macintosh/therm_pm72.c b/drivers/macintosh/therm_pm72.c index cc507ceef153..3fc8cdd94c3d 100644 --- a/drivers/macintosh/therm_pm72.c +++ b/drivers/macintosh/therm_pm72.c | |||
@@ -1678,10 +1678,9 @@ static int main_control_loop(void *x) | |||
1678 | } | 1678 | } |
1679 | 1679 | ||
1680 | // FIXME: Deal with signals | 1680 | // FIXME: Deal with signals |
1681 | set_current_state(TASK_INTERRUPTIBLE); | ||
1682 | elapsed = jiffies - start; | 1681 | elapsed = jiffies - start; |
1683 | if (elapsed < HZ) | 1682 | if (elapsed < HZ) |
1684 | schedule_timeout(HZ - elapsed); | 1683 | schedule_timeout_interruptible(HZ - elapsed); |
1685 | } | 1684 | } |
1686 | 1685 | ||
1687 | out: | 1686 | out: |