diff options
author | Michael Knudsen <mk@cvs.openbsd.org> | 2007-07-24 10:18:25 +0000 |
---|---|---|
committer | Michael Knudsen <mk@cvs.openbsd.org> | 2007-07-24 10:18:25 +0000 |
commit | ce9a1bbcb4ce7f104d7226a4c197f90b62aebb4c (patch) | |
tree | 6520133d787edd7ed1e9a34cb99ee4f9493f1c98 /sys/arch | |
parent | 505d4c7c25a6145a5565e698a7d86e6418d0fe3c (diff) |
bthub for macppc to make xsa happy.
todd will commit the MAKEDEV bits later.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/macppc/macppc/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/macppc/macppc/conf.c b/sys/arch/macppc/macppc/conf.c index d24ee06c14a..2aab846bcee 100644 --- a/sys/arch/macppc/macppc/conf.c +++ b/sys/arch/macppc/macppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.31 2007/06/04 10:23:51 otto Exp $ */ +/* $OpenBSD: conf.c,v 1.32 2007/07/24 10:18:24 mk Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -121,6 +121,7 @@ cdev_decl(xfs_dev); #include "inet.h" #include "apm.h" +#include "bthub.h" #include "wsmux.h" @@ -235,6 +236,7 @@ struct cdevsw cdevsw[] = { cdev_hotplug_init(NHOTPLUG,hotplug), /* 78: devices hot plugging */ cdev_gpio_init(NGPIO,gpio), /* 79: GPIO interface */ cdev_bio_init(NBIO,bio), /* 80: ioctl tunnel */ + cdev_bthub_init(NBTHUB,bthub), /* 81: bthub */ }; int nchrdev = sizeof cdevsw / sizeof cdevsw[0]; |