diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2007-05-26 19:54:25 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2007-05-26 19:54:25 +0000 |
commit | b74fd6e9c996487c209c24b8a0647fe8d92ca9eb (patch) | |
tree | ab21dd7a3709dcffdc5048818631d9d69e684ed7 /sys/arch/mvme88k | |
parent | 154073b242dff4bd7bdf0e293815b3e9f76353fb (diff) |
prodded by marco, enable bio everywhere
grudgingly ok deraadt@
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/mvme88k/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/mvme88k/conf.c b/sys/arch/mvme88k/mvme88k/conf.c index 6db7e728dba..a858cb4f6da 100644 --- a/sys/arch/mvme88k/mvme88k/conf.c +++ b/sys/arch/mvme88k/mvme88k/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.31 2006/05/02 21:43:09 miod Exp $ */ +/* $OpenBSD: conf.c,v 1.32 2007/05/26 19:54:24 todd Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -40,6 +40,7 @@ #include <machine/conf.h> +#include "bio.h" #include "pty.h" #include "bpfilter.h" #include "tun.h" @@ -148,7 +149,7 @@ struct cdevsw cdevsw[] = #endif /* notyet */ cdev_tty_init(NDART,dart), /* 12: MVME188 serial (tty[a-b]) */ cdev_tty_init(NCL,cl), /* 13: CL-CD1400 serial (tty0[0-3]) */ - cdev_notdef(), /* 14 */ + cdev_bio_init(NBIO,bio), /* 14: ioctl tunnel */ cdev_tty_init(NVX,vx), /* 15: MVME332XT serial/lpt ttyv[0-7][a-i] */ cdev_notdef(), /* 16 */ cdev_disk_init(NCCD,ccd), /* 17: concatenated disk */ |