diff options
author | Michel Lespinasse <walken@google.com> | 2012-10-08 16:29:34 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-09 16:22:24 +0900 |
commit | db971418824381d3583c73751181fec76c743bf6 (patch) | |
tree | ed06d4ab7de3ba8868a8696223dc2fc299e690be /mm/internal.h | |
parent | 5d3a551c28c6669dc43be40d8fafafbc2ec8f42b (diff) | |
download | linux-exynos-db971418824381d3583c73751181fec76c743bf6.tar.gz linux-exynos-db971418824381d3583c73751181fec76c743bf6.tar.bz2 linux-exynos-db971418824381d3583c73751181fec76c743bf6.zip |
mm: adjust final #endif position in mm/internal.h
Make sure the #endif that terminates the standard #ifndef / #define /
#endif construct gets labeled, and gets positioned at the end of the file
as is normally the case.
Signed-off-by: Michel Lespinasse <walken@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/internal.h')
-rw-r--r-- | mm/internal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/internal.h b/mm/internal.h index e549a7fbc296..bbd7b34db4ea 100644 --- a/mm/internal.h +++ b/mm/internal.h @@ -341,7 +341,6 @@ static inline void mminit_validate_memmodel_limits(unsigned long *start_pfn, #define ZONE_RECLAIM_FULL -1 #define ZONE_RECLAIM_SOME 0 #define ZONE_RECLAIM_SUCCESS 1 -#endif extern int hwpoison_filter(struct page *p); @@ -357,3 +356,5 @@ extern unsigned long vm_mmap_pgoff(struct file *, unsigned long, unsigned long, unsigned long); extern void set_pageblock_order(void); + +#endif /* __MM_INTERNAL_H */ |