Messages in this thread Patch in this message |  | | | From | David Howells <> | | Subject | [PATCH] NOMMU: mm/nommu.c needs linux/module.h | | Date | Mon, 29 Oct 2007 13:15:39 +0000 |
| |
From: David Howells <dhowells@redhat.com>
mm/nommu.c needs to #include linux/module.h for it to understand EXPORT_*() macros.
Signed-off-by: David Howells <dhowells@redhat.com> --- mm/nommu.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/mm/nommu.c b/mm/nommu.c index 8f09333..35622c5 100644 --- a/mm/nommu.c +++ b/mm/nommu.c @@ -12,6 +12,7 @@ * Copyright (c) 2002 Greg Ungerer <gerg@snapgear.com> */ +#include <linux/module.h> #include <linux/mm.h> #include <linux/mman.h> #include <linux/swap.h> - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |