diff options
-rw-r--r-- | include/linux/mmzone.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 498d6ceff2f4..0aece6d8937e 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -841,7 +841,10 @@ static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist, | |||
841 | 841 | ||
842 | #if !defined(CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID) && \ | 842 | #if !defined(CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID) && \ |
843 | !defined(CONFIG_ARCH_POPULATES_NODE_MAP) | 843 | !defined(CONFIG_ARCH_POPULATES_NODE_MAP) |
844 | #define early_pfn_to_nid(nid) (0UL) | 844 | static inline unsigned long early_pfn_to_nid(unsigned long pfn) |
845 | { | ||
846 | return 0; | ||
847 | } | ||
845 | #endif | 848 | #endif |
846 | 849 | ||
847 | #ifdef CONFIG_FLATMEM | 850 | #ifdef CONFIG_FLATMEM |