diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-09-18 13:21:27 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:30:29 -0400 |
commit | d9b9384215e17c68d7b6bd05d6fa409e5d4140d7 (patch) | |
tree | c6c05f056a623e7e7630bc76be7637e1b8454c86 /net/rds | |
parent | 3a9a231d977222eea36eae091df2c358e03ac839 (diff) | |
download | op-kernel-dev-d9b9384215e17c68d7b6bd05d6fa409e5d4140d7.zip op-kernel-dev-d9b9384215e17c68d7b6bd05d6fa409e5d4140d7.tar.gz |
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>
Diffstat (limited to 'net/rds')
-rw-r--r-- | net/rds/send.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rds/send.c b/net/rds/send.c index aa57e22..30a80ea 100644 --- a/net/rds/send.c +++ b/net/rds/send.c @@ -31,6 +31,7 @@ * */ #include <linux/kernel.h> +#include <linux/moduleparam.h> #include <linux/gfp.h> #include <net/sock.h> #include <linux/in.h> |