From: David Mosberger-Tang Date: Thu, 23 Jun 2005 05:24:00 +0000 (-0700) Subject: [IA64] Fix pfn_to_nid() so the kernel compiles again for !CONFIG_DISCONTIGMEM. X-Git-Tag: upstream/snapshot3+hdmi~47399^2~433^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e608a8072b10258aa18c2e33324def225199ba1d;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [IA64] Fix pfn_to_nid() so the kernel compiles again for !CONFIG_DISCONTIGMEM. Signed-off-by: David Mosberger-Tang Signed-off-by: Tony Luck --- diff --git a/include/asm-ia64/mmzone.h b/include/asm-ia64/mmzone.h index 83ca404..d32f51e 100644 --- a/include/asm-ia64/mmzone.h +++ b/include/asm-ia64/mmzone.h @@ -15,6 +15,8 @@ #include #include +#ifdef CONFIG_DISCONTIGMEM + static inline int pfn_to_nid(unsigned long pfn) { #ifdef CONFIG_NUMA @@ -29,8 +31,6 @@ static inline int pfn_to_nid(unsigned long pfn) #endif } -#ifdef CONFIG_DISCONTIGMEM - #ifdef CONFIG_IA64_DIG /* DIG systems are small */ # define MAX_PHYSNODE_ID 8 # define NR_NODE_MEMBLKS (MAX_NUMNODES * 8)