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/landisk | |
parent | ecc4584590498dda30fc8c117de6e4264e960992 (diff) |
bio for all archs, ok krw@ kettenis@ sounds good marco@ go for it deraadt@
Diffstat (limited to 'sys/arch/landisk')
-rw-r--r-- | sys/arch/landisk/landisk/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/landisk/landisk/conf.c b/sys/arch/landisk/landisk/conf.c index a7cfa2e6ceb..773e6da1746 100644 --- a/sys/arch/landisk/landisk/conf.c +++ b/sys/arch/landisk/landisk/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.5 2007/05/27 01:50:36 todd Exp $ */ +/* $OpenBSD: conf.c,v 1.6 2007/05/28 22:26:03 todd Exp $ */ /* * Copyright (c) 1994-1998 Mark Brinicombe. @@ -70,6 +70,7 @@ */ #include "bpfilter.h" #include "pf.h" +#include "bio.h" #include "pty.h" #include "tun.h" #include "ksyms.h" @@ -317,7 +318,7 @@ struct cdevsw cdevsw[] = { cdev_lkm_init(NLKM,lkm), /* 35: loadable module driver */ cdev_audio_init(NAUDIO,audio), /* 36: generic audio I/O */ cdev_hotplug_init(NHOTPLUG,hotplug), /* 37: devices hot plugging*/ - cdev_notdef(), /* 38: removed cpu device */ + cdev_bio_init(NBIO,bio), /* 38: ioctl tunnel */ cdev_lkm_dummy(), /* 39: reserved */ cdev_random_init(1,random), /* 40: random generator */ cdev_lkm_dummy(), /* 41: reserved */ |