patch-2.2.0-pre2 linux/drivers/char/riscom8.c
Next file: linux/drivers/char/specialix.c
Previous file: linux/drivers/char/istallion.c
Back to the patch index
Back to the overall index
- Lines: 20
- Date:
Tue Dec 29 11:29:54 1998
- Orig file:
v2.2.0-pre1/linux/drivers/char/riscom8.c
- Orig date:
Sun Nov 8 14:02:55 1998
diff -u --recursive --new-file v2.2.0-pre1/linux/drivers/char/riscom8.c linux/drivers/char/riscom8.c
@@ -228,7 +228,7 @@
{
unsigned long i;
- for (i = jiffies + delay; i > jiffies; ) ;
+ for (i = jiffies + delay; time_after(i,jiffies); ) ;
}
/* Reset and setup CD180 chip */
@@ -1172,8 +1172,8 @@
timeout = jiffies+HZ;
while(port->IER & IER_TXEMPTY) {
current->state = TASK_INTERRUPTIBLE;
- schedule_timeout(port->timeout);
- if (jiffies > timeout)
+ schedule_timeout(port->timeout);
+ if (time_after(jiffies, timeout))
break;
}
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov