aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/include/asm/mmzone.h
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2010-05-06 19:36:06 +0200
committerTony Luck <tony.luck@intel.com>2010-05-18 14:45:52 -0700
commit82b22c887e02fc6ebeebc8ec43fb1d348e2a6a58 (patch)
treebed512b8b59ab887aa522227f87545265865b09f /arch/ia64/include/asm/mmzone.h
parentLinus 2.6.34 (diff)
downloadlinux-dev-82b22c887e02fc6ebeebc8ec43fb1d348e2a6a58.tar.xz
linux-dev-82b22c887e02fc6ebeebc8ec43fb1d348e2a6a58.zip
[IA64] removing redundant ifdef
Pointless to use #ifdef CONFIG_NUMA in code that is already inside another #ifdef CONFIG_NUMA. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/include/asm/mmzone.h')
-rw-r--r--arch/ia64/include/asm/mmzone.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/ia64/include/asm/mmzone.h b/arch/ia64/include/asm/mmzone.h
index f2ca32069b3f..e0de61709cf1 100644
--- a/arch/ia64/include/asm/mmzone.h
+++ b/arch/ia64/include/asm/mmzone.h
@@ -19,16 +19,12 @@
static inline int pfn_to_nid(unsigned long pfn)
{
-#ifdef CONFIG_NUMA
extern int paddr_to_nid(unsigned long);
int nid = paddr_to_nid(pfn << PAGE_SHIFT);
if (nid < 0)
return 0;
else
return nid;
-#else
- return 0;
-#endif
}
#ifdef CONFIG_IA64_DIG /* DIG systems are small */