diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-17 16:40:36 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:32:19 -0400 |
commit | c7394efc26eab577b4b6a235409231deb340445f (patch) | |
tree | 0f532af71bc3ebe8550c548769485997f6b9694d /drivers/uwb | |
parent | 0b992080a98fa6f0722c43060819f7c311203a1c (diff) |
uwb: Add module.h to the real uwb modular users.
Lots of files were getting an implicit include of module.h
for years now. But that will be fixed shortly. So get the
real users to call out the include explicitly.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/uwb')
-rw-r--r-- | drivers/uwb/umc-bus.c | 1 | ||||
-rw-r--r-- | drivers/uwb/whci.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/uwb/umc-bus.c b/drivers/uwb/umc-bus.c index 5fad4e791b3..82a84d53120 100644 --- a/drivers/uwb/umc-bus.c +++ b/drivers/uwb/umc-bus.c @@ -8,6 +8,7 @@ #include <linux/kernel.h> #include <linux/sysfs.h> #include <linux/workqueue.h> +#include <linux/module.h> #include <linux/uwb/umc.h> #include <linux/pci.h> diff --git a/drivers/uwb/whci.c b/drivers/uwb/whci.c index b221142446a..f48093e649e 100644 --- a/drivers/uwb/whci.c +++ b/drivers/uwb/whci.c @@ -7,6 +7,7 @@ */ #include <linux/delay.h> #include <linux/kernel.h> +#include <linux/module.h> #include <linux/pci.h> #include <linux/dma-mapping.h> #include <linux/slab.h> |