summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc
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/powerpc
parenta8559962f98058a8039efc6dc1db817c2895dccb (diff)
add the ALTQ device to the rest of the architectures.
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r--sys/arch/powerpc/powerpc/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/powerpc/powerpc/conf.c b/sys/arch/powerpc/powerpc/conf.c
index 61a000fc51d..abc93c780ba 100644
--- a/sys/arch/powerpc/powerpc/conf.c
+++ b/sys/arch/powerpc/powerpc/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.22 2001/06/25 03:20:13 kjell Exp $ */
+/* $OpenBSD: conf.c,v 1.23 2001/06/27 06:56:29 kjc Exp $ */
/*
* Copyright (c) 1997 Per Fogelstrom
@@ -189,6 +189,8 @@ cdev_decl(audio);
#include "pf.h"
cdev_decl(pf);
+#include <altq/altqconf.h>
+
struct cdevsw cdevsw[] = {
cdev_cn_init(1,cn), /* 0: virtual console */
cdev_ctty_init(1,ctty), /* 1: controlling terminal */
@@ -274,6 +276,7 @@ struct cdevsw cdevsw[] = {
#else
cdev_notdef(),
#endif
+ cdev_altq_init(NALTQ,altq), /* 72: ALTQ control interface */
};
int nchrdev = sizeof cdevsw / sizeof cdevsw[0];