summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
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/mvme88k
parenta8559962f98058a8039efc6dc1db817c2895dccb (diff)
add the ALTQ device to the rest of the architectures.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r--sys/arch/mvme88k/mvme88k/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/mvme88k/conf.c b/sys/arch/mvme88k/mvme88k/conf.c
index 60bd325e78f..55c0902ccc1 100644
--- a/sys/arch/mvme88k/mvme88k/conf.c
+++ b/sys/arch/mvme88k/mvme88k/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.16 2001/06/25 03:20:09 kjell Exp $ */
+/* $OpenBSD: conf.c,v 1.17 2001/06/27 06:56:29 kjc Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@@ -201,6 +201,8 @@ cdev_decl(pf);
cdev_decl(lkm);
+#include <altq/altqconf.h>
+
struct cdevsw cdevsw[] =
{
cdev_cn_init(1,cn), /* 0: virtual console */
@@ -273,6 +275,7 @@ struct cdevsw cdevsw[] =
#else
cdev_notdef(), /* 51 */
#endif
+ cdev_altq_init(NALTQ,altq), /* 52: ALTQ control interface */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);