summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/dev/si/si.c4
-rw-r--r--sys/i386/isa/si.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c
index 650864f..ce68cb0 100644
--- a/sys/dev/si/si.c
+++ b/sys/dev/si/si.c
@@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
- * $Id: si.c,v 1.47 1996/06/30 04:56:05 peter Exp $
+ * $Id: si.c,v 1.48 1996/07/26 13:47:38 peter Exp $
*/
#ifndef lint
@@ -1060,7 +1060,7 @@ siwrite(dev, uio, flag)
DPRINT((pp, DBG_WRITE, "in siwrite, wait for SS_BLOCKWRITE to clear\n"));
if (error = ttysleep(tp, (caddr_t)pp, TTOPRI|PCATCH,
"siwrite", tp->t_timeout)) {
- if (error == ETIMEDOUT)
+ if (error == EWOULDBLOCK)
error = EIO;
goto out;
}
diff --git a/sys/i386/isa/si.c b/sys/i386/isa/si.c
index 650864f..ce68cb0 100644
--- a/sys/i386/isa/si.c
+++ b/sys/i386/isa/si.c
@@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
- * $Id: si.c,v 1.47 1996/06/30 04:56:05 peter Exp $
+ * $Id: si.c,v 1.48 1996/07/26 13:47:38 peter Exp $
*/
#ifndef lint
@@ -1060,7 +1060,7 @@ siwrite(dev, uio, flag)
DPRINT((pp, DBG_WRITE, "in siwrite, wait for SS_BLOCKWRITE to clear\n"));
if (error = ttysleep(tp, (caddr_t)pp, TTOPRI|PCATCH,
"siwrite", tp->t_timeout)) {
- if (error == ETIMEDOUT)
+ if (error == EWOULDBLOCK)
error = EIO;
goto out;
}
OpenPOWER on IntegriCloud