diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2016-07-23 14:01:45 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2017-01-24 12:41:46 -0500 |
commit | 8ac449e44b7320d6922ebc95471e12aa5a0f5b37 (patch) | |
tree | a5e175651f329195fe844fd64ab9d6dc130c8d14 /arch/mn10300 | |
parent | 9c14f8353e4c3cc73c9d8005fe4cfa83ee37e109 (diff) | |
download | linux-8ac449e44b7320d6922ebc95471e12aa5a0f5b37.tar.gz linux-8ac449e44b7320d6922ebc95471e12aa5a0f5b37.tar.bz2 linux-8ac449e44b7320d6922ebc95471e12aa5a0f5b37.zip |
mn10300: migrate exception table users off module.h and onto extable.h
These files were only including module.h for exception table
related functions. We've now separated that content out into its
own file "extable.h" so now move over to that and avoid all the
extra header content in module.h that we don't really need to compile
these files.
Cc: David Howells <dhowells@redhat.com>
Cc: linux-am33-list@redhat.com
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/mm/extable.c | 2 | ||||
-rw-r--r-- | arch/mn10300/mm/misalignment.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/mn10300/mm/extable.c b/arch/mn10300/mm/extable.c index 305de461cb8f..045a903ee6b9 100644 --- a/arch/mn10300/mm/extable.c +++ b/arch/mn10300/mm/extable.c @@ -8,7 +8,7 @@ * as published by the Free Software Foundation; either version * 2 of the Licence, or (at your option) any later version. */ -#include <linux/module.h> +#include <linux/extable.h> #include <linux/spinlock.h> #include <linux/uaccess.h> diff --git a/arch/mn10300/mm/misalignment.c b/arch/mn10300/mm/misalignment.c index 31d04da85743..b39a388825ae 100644 --- a/arch/mn10300/mm/misalignment.c +++ b/arch/mn10300/mm/misalignment.c @@ -8,7 +8,7 @@ * as published by the Free Software Foundation; either version * 2 of the Licence, or (at your option) any later version. */ -#include <linux/module.h> +#include <linux/extable.h> #include <linux/sched.h> #include <linux/kernel.h> #include <linux/string.h> |