summaryrefslogtreecommitdiff
path: root/sys/arch/sun3
diff options
context:
space:
mode:
authorKenjiro Cho <kjc@cvs.openbsd.org>2001-06-27 06:56:31 +0000
committerKenjiro Cho <kjc@cvs.openbsd.org>2001-06-27 06:56:31 +0000
commit8de865d12df94dc0c657425345dc6e459606e857 (patch)
treed1ede28556e0fc9721468b5d57ddad4961ddadc9 /sys/arch/sun3
parenta8559962f98058a8039efc6dc1db817c2895dccb (diff)
add the ALTQ device to the rest of the architectures.
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r--sys/arch/sun3/sun3/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/sun3/sun3/conf.c b/sys/arch/sun3/sun3/conf.c
index f2ff57b01b7..d4fb4da1eb5 100644
--- a/sys/arch/sun3/sun3/conf.c
+++ b/sys/arch/sun3/sun3/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.28 2001/06/25 03:20:19 kjell Exp $ */
+/* $OpenBSD: conf.c,v 1.29 2001/06/27 06:56:30 kjc Exp $ */
/* $NetBSD: conf.c,v 1.51 1996/11/04 16:16:09 gwr Exp $ */
/*-
@@ -114,6 +114,8 @@ int nblkdev = sizeof(bdevsw) / sizeof(bdevsw[0]);
#include "pf.h"
cdev_decl(pf);
+#include <altq/altqconf.h>
+
struct cdevsw cdevsw[] =
{
cdev_cn_init(1,cn), /* 0: virtual console */
@@ -205,6 +207,7 @@ struct cdevsw cdevsw[] =
cdev_lkm_dummy(), /* 82 */
cdev_ch_init(NCH,ch), /* 83: SCSI autochanger */
cdev_ses_init(NSES,ses), /* 84: SCSI SES or SAF-TE device */
+ cdev_altq_init(NALTQ,altq), /* 85: ALTQ control interface */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);