summaryrefslogtreecommitdiff
path: root/sys/dev/sio/sio.c
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1995-09-24 04:59:16 +0000
committerDavid Greenman <dg@FreeBSD.org>1995-09-24 04:59:16 +0000
commitb025187719dd349aa76b38b28adcd0c343105f48 (patch)
treea670125776fcebbf78d0bb66133f374ad7d248cc /sys/dev/sio/sio.c
parent2f82e60467c525f0ea7bc670b4de116c66d850cc (diff)
Notes
Diffstat (limited to 'sys/dev/sio/sio.c')
-rw-r--r--sys/dev/sio/sio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index cfaa13f07bfe..c811dcc2875f 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: sio.c,v 1.111 1995/08/24 08:55:57 phk Exp $
+ * $Id: sio.c,v 1.112 1995/09/19 12:37:41 phk Exp $
*/
#include "sio.h"
@@ -2032,7 +2032,7 @@ siostop(tp, rw)
com = com_addr(DEV_TO_UNIT(tp->t_dev));
if (com->gone)
- return 0;
+ return;
disable_intr();
if (rw & FWRITE) {
com->obufs[0].l_queued = FALSE;
@@ -2048,7 +2048,7 @@ siostop(tp, rw)
}
enable_intr();
comstart(tp);
- return 0;
+ return;
/* XXX should clear h/w fifos too. */
}