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/alpha | |
parent | ecc4584590498dda30fc8c117de6e4264e960992 (diff) |
bio for all archs, ok krw@ kettenis@ sounds good marco@ go for it deraadt@
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c index 77cce6c4fc8..23c5e155c07 100644 --- a/sys/arch/alpha/alpha/conf.c +++ b/sys/arch/alpha/alpha/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.53 2007/05/27 01:50:36 todd Exp $ */ +/* $OpenBSD: conf.c,v 1.54 2007/05/28 22:26:03 todd Exp $ */ /* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */ /*- @@ -104,6 +104,7 @@ cdev_decl(music); #include "spkr.h" cdev_decl(spkr); +#include "bio.h" #include "lpt.h" cdev_decl(lpt); cdev_decl(prom); /* XXX XXX XXX */ @@ -195,7 +196,7 @@ struct cdevsw cdevsw[] = #else cdev_notdef(), #endif - cdev_notdef(), /* 53: ALTQ (deprecated) */ + cdev_bio_init(NBIO,bio), /* 53: ioctl tunnel */ cdev_iop_init(NIOP, iop), /* 54: I2O IOP control interface */ cdev_ptm_init(NPTY,ptm), /* 55: pseudo-tty ptm device */ cdev_hotplug_init(NHOTPLUG,hotplug), /* 56: devices hot plugging */ |