diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-05-27 09:12:25 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:30:28 -0400 |
commit | 3a9a231d977222eea36eae091df2c358e03ac839 (patch) | |
tree | d2df117cf336a29fddddb000f972b5f333f40f6d /net/mac80211 | |
parent | 6e5fdeedca610df600aabc393c4b1f44b128fe49 (diff) | |
download | linux-3a9a231d977222eea36eae091df2c358e03ac839.tar.bz2 |
net: Fix files explicitly needing to include module.h
With calls to modular infrastructure, these files really
needs the full module.h header. Call it out so some of the
cleanups of implicit and unrequired includes elsewhere can be
cleaned up.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/rate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/mac80211/rate.c b/net/mac80211/rate.c index ff5c3aa48a15..5a5a7767d541 100644 --- a/net/mac80211/rate.c +++ b/net/mac80211/rate.c @@ -11,6 +11,7 @@ #include <linux/kernel.h> #include <linux/rtnetlink.h> #include <linux/slab.h> +#include <linux/module.h> #include "rate.h" #include "ieee80211_i.h" #include "debugfs.h" |