summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2002-06-18 23:16:51 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2002-06-18 23:16:51 +0000
commitc14adaf8f06f4ce9b141ee6ef32d2fa97b0032ae (patch)
treecfd6d8a2beed1190985510035f38fe01ee46d15a /sys/arch
parentadd57dea40678bc042fe16302579a87f62130a15 (diff)
oops, forgot to commit this when gpr was added.
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 583b75c71c2..d090818c657 100644
--- a/sys/arch/i386/i386/conf.c
+++ b/sys/arch/i386/i386/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.93 2002/06/18 12:50:55 nate Exp $ */
+/* $OpenBSD: conf.c,v 1.94 2002/06/18 23:16:50 fgsch Exp $ */
/* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */
/*
@@ -203,6 +203,8 @@ cdev_decl(uscanner);
#include "cz.h"
cdev_decl(cztty);
#include "radio.h"
+cdev_decl(gpr);
+#include "gpr.h"
/* XXX -- this needs to be supported by config(8)! */
#if (NCOM > 0) && (NPCCOM > 0)
@@ -329,6 +331,7 @@ struct cdevsw cdevsw[] =
cdev_ugen_init(NUSCANNER,uscanner), /* 77: USB scanners */
cdev_systrace_init(NSYSTRACE,systrace), /* 78: system call tracing */
cdev_oci_init(NBIO,bio), /* 79: ioctl tunnel */
+ cdev_ch_init(NGPR,gpr) /* 80: GPR400 SmartCard reader */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);