Update of /cvsroot/linuxconsole/ruby/linux/drivers/video
In directory usw-pr-cvs1:/tmp/cvs-serv18608/linux/drivers/video
Modified Files:
sa1100fb.c
Log Message:
Replaced all current->state = by the SMP safe set_current_state.
Index: sa1100fb.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/drivers/video/sa1100fb.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- sa1100fb.c 2001/07/04 00:02:16 1.15
+++ sa1100fb.c 2001/10/17 17:00:14 1.16
@@ -1579,7 +1579,7 @@
LCCR0 &= ~LCCR0_LEN; /* Disable LCD Controller */
schedule_timeout(20 * HZ / 1000);
- current->state = TASK_RUNNING;
+ set_current_state(TASK_RUNNING);
remove_wait_queue(&par->ctrlr_wait, &wait);
}
|