summaryrefslogtreecommitdiff
path: root/sys/arch/hp300
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2009-08-13 15:04:21 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2009-08-13 15:04:21 +0000
commitab4be3bcff17e7403fb64250b7a39a9e90e7e0cb (patch)
treec6fc9b05cbc1b3f6f340c6b0fa2664e3f0bad6d4 /sys/arch/hp300
parentea1d3cc14e6fcb12ffd166a69cd07157ce724a11 (diff)
wire vscsi up to a cdev
for claudio@ ok deraadt@
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r--sys/arch/hp300/hp300/conf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hp300/hp300/conf.c b/sys/arch/hp300/hp300/conf.c
index 94b146fce10..1a4d001f2e6 100644
--- a/sys/arch/hp300/hp300/conf.c
+++ b/sys/arch/hp300/hp300/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.45 2009/06/03 14:45:51 jj Exp $ */
+/* $OpenBSD: conf.c,v 1.46 2009/08/13 15:04:20 dlg Exp $ */
/* $NetBSD: conf.c,v 1.39 1997/05/12 08:17:53 thorpej Exp $ */
/*-
@@ -113,6 +113,7 @@ cdev_decl(nnpfs_dev);
#include "wsmux.h"
#include "pf.h"
#include "systrace.h"
+#include "vscsi.h"
struct cdevsw cdevsw[] =
{
@@ -173,6 +174,7 @@ struct cdevsw cdevsw[] =
cdev_notdef(), /* 51 */
#endif
cdev_ptm_init(NPTY,ptm), /* 52: pseudo-tty ptm device */
+ cdev_vscsi_init(NVSCSI,vscsi), /* 53: vscsi */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);