Commit d9b9384215e17c68d7b6bd05d6fa409e5d4140d7

Authored by Paul Gortmaker
1 parent 3a9a231d97

net: add moduleparam.h for users of module_param/MODULE_PARM_DESC

These files were getting access to these two via the implicit
presence of module.h everywhere.  They aren't modules, so they
don't need the full module.h inclusion though.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>

Showing 6 changed files with 6 additions and 0 deletions Side-by-side Diff

net/dccp/ccids/lib/tfrc.c
... ... @@ -4,6 +4,7 @@
4 4 * Copyright (c) 2007 The University of Aberdeen, Scotland, UK
5 5 * Copyright (c) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
6 6 */
  7 +#include <linux/moduleparam.h>
7 8 #include "tfrc.h"
8 9  
9 10 #ifdef CONFIG_IP_DCCP_TFRC_DEBUG
... ... @@ -16,6 +16,7 @@
16 16 #include <linux/skbuff.h>
17 17 #include <linux/if_arp.h>
18 18 #include <linux/etherdevice.h>
  19 +#include <linux/moduleparam.h>
19 20 #include <linux/rtnetlink.h>
20 21 #include <linux/pm_qos.h>
21 22 #include <linux/crc32.h>
net/netfilter/nf_conntrack_expect.c
... ... @@ -20,6 +20,7 @@
20 20 #include <linux/percpu.h>
21 21 #include <linux/kernel.h>
22 22 #include <linux/jhash.h>
  23 +#include <linux/moduleparam.h>
23 24 #include <net/net_namespace.h>
24 25  
25 26 #include <net/netfilter/nf_conntrack.h>
... ... @@ -31,6 +31,7 @@
31 31 *
32 32 */
33 33 #include <linux/kernel.h>
  34 +#include <linux/moduleparam.h>
34 35 #include <linux/gfp.h>
35 36 #include <net/sock.h>
36 37 #include <linux/in.h>
... ... @@ -15,6 +15,7 @@
15 15  
16 16 #include <linux/input.h>
17 17 #include <linux/slab.h>
  18 +#include <linux/moduleparam.h>
18 19 #include <linux/workqueue.h>
19 20 #include <linux/init.h>
20 21 #include <linux/rfkill.h>
... ... @@ -42,6 +42,7 @@
42 42 #include <linux/ctype.h>
43 43 #include <linux/nl80211.h>
44 44 #include <linux/platform_device.h>
  45 +#include <linux/moduleparam.h>
45 46 #include <net/cfg80211.h>
46 47 #include "core.h"
47 48 #include "reg.h"