From: Michel Lespinasse Date: Mon, 8 Oct 2012 23:29:34 +0000 (-0700) Subject: mm: adjust final #endif position in mm/internal.h X-Git-Tag: v3.7-rc1~53^2~137 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=db971418824381d3583c73751181fec76c743bf6;p=platform%2Fkernel%2Flinux-exynos.git 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 Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/internal.h b/mm/internal.h index e549a7f..bbd7b34 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 */