summaryrefslogtreecommitdiff
path: root/sys/arch/socppc/socppc/conf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/socppc/socppc/conf.c')
-rw-r--r--sys/arch/socppc/socppc/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/socppc/socppc/conf.c b/sys/arch/socppc/socppc/conf.c
index 9b588feabf5..111543cd4a4 100644
--- a/sys/arch/socppc/socppc/conf.c
+++ b/sys/arch/socppc/socppc/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.6 2009/05/31 20:43:44 maja Exp $ */
+/* $OpenBSD: conf.c,v 1.7 2009/08/13 15:04:20 dlg Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -110,6 +110,8 @@ cdev_decl(pci);
#include "usb.h"
#include "uhid.h"
+#include "vscsi.h"
+
struct cdevsw cdevsw[] = {
cdev_cn_init(1,cn), /* 0: virtual console */
cdev_ctty_init(1,ctty), /* 1: controlling terminal */
@@ -195,6 +197,7 @@ struct cdevsw cdevsw[] = {
cdev_notdef(), /* 75 */
cdev_notdef(), /* 76 */
cdev_ptm_init(NPTY,ptm), /* 77: pseudo-tty ptm device */
+ cdev_vscsi_init(NVSCSI,vscsi), /* 78: vscsi */
};
int nchrdev = sizeof cdevsw / sizeof cdevsw[0];