diff options
author | phk <phk@FreeBSD.org> | 2004-05-30 20:27:19 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-05-30 20:27:19 +0000 |
commit | f43aa0c4bc56d0ae426158929dd7131e564971a1 (patch) | |
tree | 1730929a3390b3963952b0ff4ddea0a438db0680 /sys/netgraph/bluetooth | |
parent | 9d102d7d5a70ee242bf760ceab1e919140bf51c8 (diff) | |
download | FreeBSD-src-f43aa0c4bc56d0ae426158929dd7131e564971a1.zip FreeBSD-src-f43aa0c4bc56d0ae426158929dd7131e564971a1.tar.gz |
add missing #include <sys/module.h>
Diffstat (limited to 'sys/netgraph/bluetooth')
-rw-r--r-- | sys/netgraph/bluetooth/common/ng_bluetooth.c | 1 | ||||
-rw-r--r-- | sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c | 1 | ||||
-rw-r--r-- | sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/netgraph/bluetooth/common/ng_bluetooth.c b/sys/netgraph/bluetooth/common/ng_bluetooth.c index 73f8266..ae5cc77 100644 --- a/sys/netgraph/bluetooth/common/ng_bluetooth.c +++ b/sys/netgraph/bluetooth/common/ng_bluetooth.c @@ -33,6 +33,7 @@ #include <sys/systm.h> #include <sys/errno.h> #include <sys/kernel.h> +#include <sys/module.h> #include <sys/sysctl.h> #include <netgraph/bluetooth/include/ng_bluetooth.h> diff --git a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c index ef893da..5c48c53 100644 --- a/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c +++ b/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c @@ -39,6 +39,7 @@ #include <sys/mbuf.h> #include <sys/malloc.h> #include <sys/kernel.h> +#include <sys/module.h> #include <sys/poll.h> #include <sys/uio.h> #include <machine/bus.h> diff --git a/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c b/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c index 7f6b6c1..19e1801 100644 --- a/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c +++ b/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c @@ -36,6 +36,7 @@ #include <sys/filio.h> #include <sys/fcntl.h> #include <sys/kernel.h> +#include <sys/module.h> #include <sys/poll.h> #include <sys/proc.h> #include <sys/sysctl.h> |