diff options
| author | uebayasi <uebayasi@NetBSD.org> | 2011-07-31 13:51:53 +0000 |
|---|---|---|
| committer | uebayasi <uebayasi@NetBSD.org> | 2011-07-31 13:51:53 +0000 |
| commit | fdc2d3a9a024f470e571e8d6550c30b6a43eaccf (patch) | |
| tree | f8ebf509779cbcf403c40cc65fdca79af0c06017 /sys/dev/bluetooth | |
| parent | 6b70f772dd8b210f23c8375d12c3b0f098fe968e (diff) | |
Put back #include "ioconf.h" per popular demand.
Diffstat (limited to 'sys/dev/bluetooth')
| -rw-r--r-- | sys/dev/bluetooth/bcsp.c | 7 | ||||
| -rw-r--r-- | sys/dev/bluetooth/bthub.c | 8 | ||||
| -rw-r--r-- | sys/dev/bluetooth/btuart.c | 8 |
3 files changed, 12 insertions, 11 deletions
diff --git a/sys/dev/bluetooth/bcsp.c b/sys/dev/bluetooth/bcsp.c index 8c4e973c38f..781412a8404 100644 --- a/sys/dev/bluetooth/bcsp.c +++ b/sys/dev/bluetooth/bcsp.c @@ -1,4 +1,4 @@ -/* $NetBSD: bcsp.c,v 1.19 2011/05/25 16:33:37 uebayasi Exp $ */ +/* $NetBSD: bcsp.c,v 1.20 2011/07/31 13:51:53 uebayasi Exp $ */ /* * Copyright (c) 2007 KIYOHARA Takashi * All rights reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: bcsp.c,v 1.19 2011/05/25 16:33:37 uebayasi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: bcsp.c,v 1.20 2011/07/31 13:51:53 uebayasi Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -50,6 +50,8 @@ __KERNEL_RCSID(0, "$NetBSD: bcsp.c,v 1.19 2011/05/25 16:33:37 uebayasi Exp $"); #include <dev/bluetooth/bcsp.h> +#include "ioconf.h" + #ifdef BCSP_DEBUG #ifdef DPRINTF #undef DPRINTF @@ -184,7 +186,6 @@ static void bcsp_stats(device_t, struct bt_stats *, int); static void bcsp_packet_print(struct mbuf *m); #endif -extern struct cfdriver bcsp_cd; /* * It doesn't need to be exported, as only bcspattach() uses it, diff --git a/sys/dev/bluetooth/bthub.c b/sys/dev/bluetooth/bthub.c index 214b7022e90..a37f6669214 100644 --- a/sys/dev/bluetooth/bthub.c +++ b/sys/dev/bluetooth/bthub.c @@ -1,4 +1,4 @@ -/* $NetBSD: bthub.c,v 1.16 2011/05/25 16:33:37 uebayasi Exp $ */ +/* $NetBSD: bthub.c,v 1.17 2011/07/31 13:51:53 uebayasi Exp $ */ /*- * Copyright (c) 2006 Itronix Inc. @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: bthub.c,v 1.16 2011/05/25 16:33:37 uebayasi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: bthub.c,v 1.17 2011/07/31 13:51:53 uebayasi Exp $"); #include <sys/param.h> #include <sys/conf.h> @@ -51,6 +51,8 @@ __KERNEL_RCSID(0, "$NetBSD: bthub.c,v 1.16 2011/05/25 16:33:37 uebayasi Exp $"); #include <dev/bluetooth/btdev.h> +#include "ioconf.h" + /***************************************************************************** * * Bluetooth Device Hub @@ -61,8 +63,6 @@ static int bthub_match(device_t, cfdata_t, void *); static void bthub_attach(device_t, device_t, void *); static int bthub_detach(device_t, int); -extern struct cfdriver bthub_cd; - CFATTACH_DECL_NEW(bthub, 0, bthub_match, bthub_attach, bthub_detach, NULL); diff --git a/sys/dev/bluetooth/btuart.c b/sys/dev/bluetooth/btuart.c index 3208c33fabd..ba6d052b28c 100644 --- a/sys/dev/bluetooth/btuart.c +++ b/sys/dev/bluetooth/btuart.c @@ -1,4 +1,4 @@ -/* $NetBSD: btuart.c,v 1.25 2011/05/25 16:33:37 uebayasi Exp $ */ +/* $NetBSD: btuart.c,v 1.26 2011/07/31 13:51:53 uebayasi Exp $ */ /*- * Copyright (c) 2006, 2007 KIYOHARA Takashi @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: btuart.c,v 1.25 2011/05/25 16:33:37 uebayasi Exp $"); +__KERNEL_RCSID(0, "$NetBSD: btuart.c,v 1.26 2011/07/31 13:51:53 uebayasi Exp $"); #include <sys/param.h> #include <sys/conf.h> @@ -49,6 +49,8 @@ __KERNEL_RCSID(0, "$NetBSD: btuart.c,v 1.25 2011/05/25 16:33:37 uebayasi Exp $") #include <netbt/bluetooth.h> #include <netbt/hci.h> +#include "ioconf.h" + struct btuart_softc { device_t sc_dev; struct tty * sc_tp; /* tty pointer */ @@ -97,8 +99,6 @@ static void btuart_output_acl(device_t, struct mbuf *); static void btuart_output_sco(device_t, struct mbuf *); static void btuart_stats(device_t, struct bt_stats *, int); -extern struct cfdriver btuart_cd; - /* * It doesn't need to be exported, as only btuartattach() uses it, * but there's no "official" way to make it static. |
