summaryrefslogtreecommitdiff
path: root/sys/netbt
diff options
context:
space:
mode:
authorBret Lambert <blambert@cvs.openbsd.org>2010-07-29 14:06:27 +0000
committerBret Lambert <blambert@cvs.openbsd.org>2010-07-29 14:06:27 +0000
commit3d7552fb431d2bfd80024d51b4e30be02cb23c5a (patch)
tree949a630e2168114c27b24996cfd51ebae4b975f5 /sys/netbt
parenta71bb35b5ecfc097a06582f89e74d5661a478749 (diff)
#include <sys/pool.h> directly, instead of relying on mbuf.h to inlcude it
ok miod@ tedu@
Diffstat (limited to 'sys/netbt')
-rw-r--r--sys/netbt/hci_link.c3
-rw-r--r--sys/netbt/l2cap_misc.c3
-rw-r--r--sys/netbt/rfcomm_session.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/sys/netbt/hci_link.c b/sys/netbt/hci_link.c
index ab00ee34744..0dcae7e9055 100644
--- a/sys/netbt/hci_link.c
+++ b/sys/netbt/hci_link.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hci_link.c,v 1.9 2008/11/22 04:42:58 uwe Exp $ */
+/* $OpenBSD: hci_link.c,v 1.10 2010/07/29 14:06:26 blambert Exp $ */
/* $NetBSD: hci_link.c,v 1.20 2008/04/24 11:38:37 ad Exp $ */
/*-
@@ -38,6 +38,7 @@
#include <sys/proc.h>
#include <sys/queue.h>
#include <sys/systm.h>
+#include <sys/pool.h>
#include <netbt/bluetooth.h>
#include <netbt/hci.h>
diff --git a/sys/netbt/l2cap_misc.c b/sys/netbt/l2cap_misc.c
index 78d3df6ed3e..9034a322b4c 100644
--- a/sys/netbt/l2cap_misc.c
+++ b/sys/netbt/l2cap_misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: l2cap_misc.c,v 1.6 2008/11/22 04:42:58 uwe Exp $ */
+/* $OpenBSD: l2cap_misc.c,v 1.7 2010/07/29 14:06:26 blambert Exp $ */
/* $NetBSD: l2cap_misc.c,v 1.6 2008/04/24 11:38:37 ad Exp $ */
/*-
@@ -37,6 +37,7 @@
#include <sys/proc.h>
#include <sys/queue.h>
#include <sys/systm.h>
+#include <sys/pool.h>
#include <netbt/bluetooth.h>
#include <netbt/hci.h>
diff --git a/sys/netbt/rfcomm_session.c b/sys/netbt/rfcomm_session.c
index d0a14a8c5e0..8cdf3fb2bb3 100644
--- a/sys/netbt/rfcomm_session.c
+++ b/sys/netbt/rfcomm_session.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rfcomm_session.c,v 1.6 2010/07/02 02:40:16 blambert Exp $ */
+/* $OpenBSD: rfcomm_session.c,v 1.7 2010/07/29 14:06:26 blambert Exp $ */
/* $NetBSD: rfcomm_session.c,v 1.14 2008/08/06 15:01:24 plunky Exp $ */
/*-
@@ -38,6 +38,7 @@
#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/types.h>
+#include <sys/pool.h>
#include <netbt/bluetooth.h>
#include <netbt/hci.h>