diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2017-01-10 10:12:55 -0500 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2017-01-26 10:58:13 -0500 |
commit | 5437344c2bb81fdb8a5074f15899788eed537655 (patch) | |
tree | 20849070732ce0bf3455fab05a6eaa31c8ec6d9a /arch | |
parent | ce139ab8e629426cf0f909584160a21a17a284be (diff) | |
download | linux-5437344c2bb81fdb8a5074f15899788eed537655.tar.bz2 |
sparc: migrate exception table users onto extable.h
This file was using module.h for search_exception_table. We've
now separated that content out into its own file "extable.h" so
now move over to that. Unlike most other instances, we can't
delete the module.h include here since the file needs that for
the within_module_init definition.
Reported-by: kbuild test robot <lkp@intel.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: sparclinux@vger.kernel.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc/mm/extable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sparc/mm/extable.c b/arch/sparc/mm/extable.c index 768a11e6bd4f..db214e9931d9 100644 --- a/arch/sparc/mm/extable.c +++ b/arch/sparc/mm/extable.c @@ -3,6 +3,7 @@ */ #include <linux/module.h> +#include <linux/extable.h> #include <linux/uaccess.h> void sort_extable(struct exception_table_entry *start, |