diff options
author | Michael Knudsen <mk@cvs.openbsd.org> | 2007-07-23 13:30:22 +0000 |
---|---|---|
committer | Michael Knudsen <mk@cvs.openbsd.org> | 2007-07-23 13:30:22 +0000 |
commit | 919dd43eda09e6eaf31aa18162c4cd2cb514b9ce (patch) | |
tree | dfd67e8196d1717c2069b3ede6be58a42309f5ba /sys/arch/i386 | |
parent | 56359d0feac7f4426d00a614ae5560a81827b938 (diff) |
Add glue for a control device for bthub(4). Will be used to configure
device inquiry/discovery parameters, pairings, and what else might be
needed.
From discussion with gwk. MAKEDEV goo follows later.
ok and lots of input from miod.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/conf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c index ab58b8397f0..bbe36f466b2 100644 --- a/sys/arch/i386/i386/conf.c +++ b/sys/arch/i386/i386/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.117 2007/05/29 19:03:35 krw Exp $ */ +/* $OpenBSD: conf.c,v 1.118 2007/07/23 13:30:21 mk Exp $ */ /* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */ /* @@ -153,6 +153,7 @@ cdev_decl(music); #include "joy.h" #include "acpi.h" #include "apm.h" +#include "bthub.h" #include "pctr.h" #include "bios.h" #include "iop.h" @@ -307,6 +308,7 @@ struct cdevsw cdevsw[] = cdev_gpio_init(NGPIO,gpio), /* 83: GPIO interface */ cdev_nvram_init(NNVRAM,nvram), /* 84: NVRAM interface */ cdev_acpi_init(NACPI,acpi), /* 85: ACPI */ + cdev_bthub_init(NBTHUB,bthub), /* 86: bthub */ }; int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]); |