kernel: fix up module header handling in rcutiny files
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Tue, 25 Oct 2011 17:13:57 +0000 (13:13 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 31 Oct 2011 13:20:13 +0000 (09:20 -0400)
The file rcutiny.c does not need moduleparam.h header, as
there are no modparams in this file.

However rcutiny_plugin.h does define a module_init() and
a module_exit() and it uses the various MODULE_ macros, so
it really does need module.h included.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
kernel/rcutiny.c
kernel/rcutiny_plugin.h

index b5e525d67fe305970bdbbc733f8cbc736db78601..636af6d9c6e565ca6e6d7010941501901c8322b4 100644 (file)
@@ -22,7 +22,6 @@
  * For detailed explanation of Read-Copy Update mechanism see -
  *             Documentation/RCU
  */
-#include <linux/moduleparam.h>
 #include <linux/completion.h>
 #include <linux/interrupt.h>
 #include <linux/notifier.h>
index 02aa7139861ca2671328b253be2009ee5b4c41be..2b0484a5dc285bcb68773843a934cd0cc05212c8 100644 (file)
@@ -23,6 +23,7 @@
  */
 
 #include <linux/kthread.h>
+#include <linux/module.h>
 #include <linux/debugfs.h>
 #include <linux/seq_file.h>