diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2007-05-28 22:26:04 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2007-05-28 22:26:04 +0000 |
commit | 961285eb3b62bb66a9cd3a62a26c6def68d42448 (patch) | |
tree | 4084eb91eeb32486364317ef606822e61986210a /sys/arch/mvme88k | |
parent | ecc4584590498dda30fc8c117de6e4264e960992 (diff) |
bio for all archs, ok krw@ kettenis@ sounds good marco@ go for it 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 4aac6ea9403..398593f6e36 100644 --- a/sys/arch/mvme88k/mvme88k/conf.c +++ b/sys/arch/mvme88k/mvme88k/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.33 2007/05/27 01:50:36 todd Exp $ */ +/* $OpenBSD: conf.c,v 1.34 2007/05/28 22:26:03 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" @@ -192,7 +193,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 46 */ cdev_notdef(), /* 47 */ cdev_notdef(), /* 48 */ - cdev_notdef(), /* 49 */ + cdev_bio_init(NBIO,bio), /* 49: ioctl tunnel */ cdev_systrace_init(NSYSTRACE,systrace), /* 50 system call tracing */ #ifdef XFS cdev_xfs_init(NXFS,xfs_dev), /* 51: xfs communication device */ |