diff options
author | Milind Arun Choudhary <milindchoudhary@gmail.com> | 2007-05-08 03:30:52 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:13 -0400 |
commit | cc0a8fbb7ce00f65dc337dd91389b7151f44ed30 (patch) | |
tree | 2d33013f99e7b889932618ff02a77dae7734023d /drivers/char/riscom8.c | |
parent | 5ab2f7e0fdd04148e08348701d6bd6a292ce2d26 (diff) |
drivers/char: use __set_current_state()
use __set_current_state(TASK_*) instead of current->state = TASK_*,
Signed-off-by: Milind Arun Choudhary <milindchoudhary@gmail.com>
Cc: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/riscom8.c')
-rw-r--r-- | drivers/char/riscom8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/riscom8.c b/drivers/char/riscom8.c index 70145254fb9d..3494e3fc44bf 100644 --- a/drivers/char/riscom8.c +++ b/drivers/char/riscom8.c | |||
@@ -980,7 +980,7 @@ static int block_til_ready(struct tty_struct *tty, struct file * filp, | |||
980 | } | 980 | } |
981 | schedule(); | 981 | schedule(); |
982 | } | 982 | } |
983 | current->state = TASK_RUNNING; | 983 | __set_current_state(TASK_RUNNING); |
984 | remove_wait_queue(&port->open_wait, &wait); | 984 | remove_wait_queue(&port->open_wait, &wait); |
985 | if (!tty_hung_up_p(filp)) | 985 | if (!tty_hung_up_p(filp)) |
986 | port->count++; | 986 | port->count++; |