diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2009-08-13 15:04:21 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2009-08-13 15:04:21 +0000 |
commit | ab4be3bcff17e7403fb64250b7a39a9e90e7e0cb (patch) | |
tree | c6fc9b05cbc1b3f6f340c6b0fa2664e3f0bad6d4 /sys/arch/landisk | |
parent | ea1d3cc14e6fcb12ffd166a69cd07157ce724a11 (diff) |
wire vscsi up to a cdev
for claudio@ ok deraadt@
Diffstat (limited to 'sys/arch/landisk')
-rw-r--r-- | sys/arch/landisk/landisk/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/landisk/landisk/conf.c b/sys/arch/landisk/landisk/conf.c index ee0e7c8c315..98fb35877d1 100644 --- a/sys/arch/landisk/landisk/conf.c +++ b/sys/arch/landisk/landisk/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.12 2009/06/03 14:45:52 jj Exp $ */ +/* $OpenBSD: conf.c,v 1.13 2009/08/13 15:04:20 dlg Exp $ */ /* * Copyright (c) 1994-1998 Mark Brinicombe. @@ -265,6 +265,7 @@ cdev_decl(nnpfs_dev); #include "hotplug.h" #include "scif.h" +#include "vscsi.h" #ifdef CONF_HAVE_GPIO #include "gpio.h" @@ -380,6 +381,7 @@ struct cdevsw cdevsw[] = { cdev_notdef(), /* 96: removed device */ cdev_radio_init(NRADIO,radio), /* 97: generic radio I/O */ cdev_ptm_init(NPTY,ptm), /* 98: pseudo-tty ptm device */ + cdev_vscsi_init(NVSCSI,vscsi), /* 99: vscsi */ }; int nblkdev = sizeof(bdevsw) / sizeof(bdevsw[0]); |