From: Michel Lespinasse Date: Fri, 28 Sep 2012 00:19:15 +0000 (+1000) Subject: mm: adjust final #endif position in mm/internal.h X-Git-Tag: next-20121004~1^2~335 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2dc6d48ba4bba11072d5da53bbf9338c20c13a48;p=karo-tx-linux.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 --- 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 */