Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1486910 > unrolled thread
| Started by | Paul Gortmaker <paul.gortmaker@windriver.com> |
|---|---|
| First post | 2016-09-20 00:00 +0200 |
| Last post | 2016-09-23 15:40 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] cris: migrate exception table users off module.h and onto extable.h Paul Gortmaker <paul.gortmaker@windriver.com> - 2016-09-20 00:00 +0200
Re: [PATCH] cris: migrate exception table users off module.h and onto extable.h Jesper Nilsson <jesper.nilsson@axis.com> - 2016-09-23 15:40 +0200
| From | Paul Gortmaker <paul.gortmaker@windriver.com> |
|---|---|
| Date | 2016-09-20 00:00 +0200 |
| Subject | [PATCH] cris: migrate exception table users off module.h and onto extable.h |
| Message-ID | <sjeLw-2Ar-17@gated-at.bofh.it> |
This file was 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 this file. Cc: Mikael Starvik <starvik@axis.com> Cc: Jesper Nilsson <jesper.nilsson@axis.com> Cc: linux-cris-kernel@axis.com Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> --- [see: https://lkml.org/lkml/2016/7/24/224 for additional context if needed] arch/cris/mm/fault.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/cris/mm/fault.c b/arch/cris/mm/fault.c index 112ef26c7f2e..94183d3639ef 100644 --- a/arch/cris/mm/fault.c +++ b/arch/cris/mm/fault.c @@ -6,7 +6,7 @@ #include <linux/mm.h> #include <linux/interrupt.h> -#include <linux/module.h> +#include <linux/extable.h> #include <linux/wait.h> #include <linux/uaccess.h> #include <arch/system.h> -- 2.8.4
[toc] | [next] | [standalone]
| From | Jesper Nilsson <jesper.nilsson@axis.com> |
|---|---|
| Date | 2016-09-23 15:40 +0200 |
| Subject | Re: [PATCH] cris: migrate exception table users off module.h and onto extable.h |
| Message-ID | <skyRQ-4e3-27@gated-at.bofh.it> |
| In reply to | #1486910 |
On Mon, Sep 19, 2016 at 05:56:54PM -0400, Paul Gortmaker wrote:
> This file was 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 this file.
Thanks, added to cris for-next.
> Cc: Mikael Starvik <starvik@axis.com>
> Cc: Jesper Nilsson <jesper.nilsson@axis.com>
> Cc: linux-cris-kernel@axis.com
> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
/^JN - Jesper Nilsson
--
Jesper Nilsson -- jesper.nilsson@axis.com
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web