summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-07-06 23:59:37 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-07-06 23:59:37 +0000
commit496a6222b60c1ed23fd3b6de947153fe9b12d8b1 (patch)
treed042fad71c4cb64371f505a16bf54c6aaca1c607 /sys/arch
parenta8fb52cd15d6e25cfe52bc02dfc294ce7727ce3d (diff)
add pccom, character device 46.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/i386/conf.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c
index 0766c2e7a27..0b05603b729 100644
--- a/sys/arch/i386/i386/conf.c
+++ b/sys/arch/i386/i386/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.16 1996/06/08 09:12:39 downsj Exp $ */
+/* $OpenBSD: conf.c,v 1.17 1996/07/06 23:59:36 downsj Exp $ */
/* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */
/*
@@ -185,6 +185,8 @@ cdev_decl(joy);
cdev_decl(apm);
#include "rnd.h"
cdev_decl(rnd);
+#include "pccom.h"
+cdev_decl(pccom);
cdev_decl(ipl);
#ifdef IPFILTER
@@ -245,6 +247,7 @@ struct cdevsw cdevsw[] =
#endif
cdev_gen_ipf(NIPF,ipl), /* 44 ip filtering */
cdev_rnd_init(NRND,rnd), /* 45 random data source */
+ cdev_tty_init(NPCCOM,pccom), /* 46: serial port */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);
@@ -365,6 +368,7 @@ chrtoblk(dev)
cons_decl(pc);
cons_decl(com);
+cons_decl(pccom);
struct consdev constab[] = {
#if NPC + NVT > 0
@@ -373,5 +377,8 @@ struct consdev constab[] = {
#if NCOM > 0
cons_init(com),
#endif
+#if NPCCOM > 0
+ cons_init(pccom),
+#endif
{ 0 },
};