]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
sparc: Add module.h to files previously implicitly using it.
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 31 Jul 2011 05:50:31 +0000 (01:50 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Mon, 31 Oct 2011 23:30:54 +0000 (19:30 -0400)
The file mm/extable.c needs module.h for within_module_init(), and
also for search_exception_tables [which arguably could be living somewhere
more appropriate than module.h] - eventually causing this:

arch/sparc/mm/extable.c: In function 'trim_init_extable':
arch/sparc/mm/extable.c:74: error: dereferencing pointer to incomplete type
arch/sparc/mm/extable.c:75: error: dereferencing pointer to incomplete type
arch/sparc/mm/extable.c:77: error: implicit declaration of function 'within_module_init'
arch/sparc/mm/extable.c:77: error: dereferencing pointer to incomplete type
arch/sparc/mm/extable.c:78: error: dereferencing pointer to incomplete type
arch/sparc/mm/extable.c:80: error: dereferencing pointer to incomplete type
arch/sparc/mm/extable.c: In function 'search_extables_range':
arch/sparc/mm/extable.c:93: error: implicit declaration of function 'search_exception_tables'

The other instances are more straight forward uses of things
like MODULE_* and module_*

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
arch/sparc/kernel/apc.c
arch/sparc/kernel/pmc.c
arch/sparc/mm/extable.c

index caef9deb5866f6d87a6fd3d72cb0bc4b25719080..812e10bbb0b332cf648f747884f93d1b3bc22073 100644 (file)
@@ -13,6 +13,7 @@
 #include <linux/pm.h>
 #include <linux/of.h>
 #include <linux/of_device.h>
+#include <linux/module.h>
 
 #include <asm/io.h>
 #include <asm/oplib.h>
index 6a585d393580d38d651f5053e08bded4081c6bba..0e3202239ff5b7b1e13441ca1017fb672c9d33d8 100644 (file)
@@ -11,6 +11,7 @@
 #include <linux/pm.h>
 #include <linux/of.h>
 #include <linux/of_device.h>
+#include <linux/module.h>
 
 #include <asm/io.h>
 #include <asm/oplib.h>
index 7131eacc120f7d56bb1d30a0684db5c07e860b4a..a61c349448e1e12b28621b3590553593f2d3b799 100644 (file)
@@ -2,6 +2,7 @@
  * linux/arch/sparc/mm/extable.c
  */
 
+#include <linux/module.h>
 #include <asm/uaccess.h>
 
 void sort_extable(struct exception_table_entry *start,