summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/i386/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c
index e0b5252644d..45e996e5b38 100644
--- a/sys/arch/i386/i386/conf.c
+++ b/sys/arch/i386/i386/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.59 2000/04/09 21:07:46 matthieu Exp $ */
+/* $OpenBSD: conf.c,v 1.60 2000/04/15 17:36:29 jakob Exp $ */
/* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */
/*
@@ -202,6 +202,8 @@ cdev_decl(uhid);
cdev_decl(ugen);
#include "ulpt.h"
cdev_decl(ulpt);
+#include "urio.h"
+cdev_decl(urio);
#ifdef IPFILTER
#define NIPF 1
@@ -303,6 +305,7 @@ struct cdevsw cdevsw[] =
cdev_usbdev_init(NUHID,uhid), /* 62: USB generic HID */
cdev_ugen_init(NUGEN,ugen), /* 63: USB generic driver */
cdev_ulpt_init(NULPT,ulpt), /* 64: USB printers */
+ cdev_usbdev_init(NURIO,urio), /* 65: USB Diamond Rio 500 */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);