summaryrefslogtreecommitdiff
path: root/sys/arch/arc
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-04-30 22:02:25 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-04-30 22:02:25 +0000
commit50d9fc5628e976924f75ce3e4409ad8100fb2ed7 (patch)
tree601b6750e41126a680e9eef76cac71470a7eaeea /sys/arch/arc
parent7cfe7111c717146bf5f35a26cb7546c2d2058b6e (diff)
Add SCSI scanner device
Diffstat (limited to 'sys/arch/arc')
-rw-r--r--sys/arch/arc/arc/conf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/arc/arc/conf.c b/sys/arch/arc/arc/conf.c
index f9b78dcc762..b3f21dc7e71 100644
--- a/sys/arch/arc/arc/conf.c
+++ b/sys/arch/arc/arc/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.14 1997/04/19 17:19:40 pefo Exp $ */
+/* $OpenBSD: conf.c,v 1.15 1997/04/30 22:02:24 niklas Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)conf.c 8.2 (Berkeley) 11/14/93
- * $Id: conf.c,v 1.14 1997/04/19 17:19:40 pefo Exp $
+ * $Id: conf.c,v 1.15 1997/04/30 22:02:24 niklas Exp $
*/
#include <sys/param.h>
@@ -145,6 +145,7 @@ cdev_decl(sd);
cdev_decl(pc);
cdev_decl(pms);
cdev_decl(cd);
+#include "ss.h"
#include "uk.h"
cdev_decl(uk);
cdev_decl(wd);
@@ -194,6 +195,7 @@ struct cdevsw cdevsw[] =
cdev_gen_ipf(NIPF,ipl), /* 31: IP filter log */
cdev_uk_init(NUK,uk), /* 32: unknown SCSI */
cdev_random_init(1,random), /* 33: random data source */
+ cdev_ss_init(NSS,ss), /* 34: SCSI scanner */
};
int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]);