diff options
author | Kenjiro Cho <kjc@cvs.openbsd.org> | 2001-06-27 06:56:31 +0000 |
---|---|---|
committer | Kenjiro Cho <kjc@cvs.openbsd.org> | 2001-06-27 06:56:31 +0000 |
commit | 8de865d12df94dc0c657425345dc6e459606e857 (patch) | |
tree | d1ede28556e0fc9721468b5d57ddad4961ddadc9 /sys/arch/mvme68k | |
parent | a8559962f98058a8039efc6dc1db817c2895dccb (diff) |
add the ALTQ device to the rest of the architectures.
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/conf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/mvme68k/mvme68k/conf.c b/sys/arch/mvme68k/mvme68k/conf.c index 4fa997e699c..d897c4068fb 100644 --- a/sys/arch/mvme68k/mvme68k/conf.c +++ b/sys/arch/mvme68k/mvme68k/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.21 2001/06/25 03:20:05 kjell Exp $ */ +/* $OpenBSD: conf.c,v 1.22 2001/06/27 06:56:29 kjc Exp $ */ /*- * Copyright (c) 1995 Theo de Raadt @@ -181,6 +181,8 @@ dev_decl(filedesc,open); #include "pf.h" cdev_decl(pf); +#include <altq/altqconf.h> + struct cdevsw cdevsw[] = { cdev_cn_init(1,cn), /* 0: virtual console */ @@ -239,6 +241,7 @@ struct cdevsw cdevsw[] = #else cdev_lkm_dummy(), /* 51 */ #endif + cdev_altq_init(NALTQ,altq), /* 52: ALTQ control interface */ }; int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]); |