diff options
author | David Howells <dhowells@redhat.com> | 2009-09-24 12:33:32 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-24 17:20:20 -0700 |
commit | 934831d060ccd5471ecbc562804a8d3ccd6e562c (patch) | |
tree | cfa123da33934e86e997a0a12a8709ac892b450d | |
parent | 645d83c5db970a1c57225e155113b4aa2451e920 (diff) | |
download | linux-3.10-934831d060ccd5471ecbc562804a8d3ccd6e562c.tar.gz linux-3.10-934831d060ccd5471ecbc562804a8d3ccd6e562c.tar.bz2 linux-3.10-934831d060ccd5471ecbc562804a8d3ccd6e562c.zip |
NOMMU: Fallback for is_vmalloc_or_module_addr() should be inline
The NOMMU fallback for is_vmalloc_or_module_addr() should be static inline,
not just static, in linux/mm.h.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/mm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index df08551cb0a..24c395694f4 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -288,7 +288,7 @@ static inline int is_vmalloc_addr(const void *x) #ifdef CONFIG_MMU extern int is_vmalloc_or_module_addr(const void *x); #else -static int is_vmalloc_or_module_addr(const void *x) +static inline int is_vmalloc_or_module_addr(const void *x) { return 0; } |