diff options
author | Jiri Olsa <jolsa@redhat.com> | 2010-05-06 19:36:06 +0200 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2010-05-18 14:45:52 -0700 |
commit | 82b22c887e02fc6ebeebc8ec43fb1d348e2a6a58 (patch) | |
tree | bed512b8b59ab887aa522227f87545265865b09f /arch/ia64 | |
parent | e40152ee1e1c7a63f4777791863215e3faa37a86 (diff) | |
download | linux-3.10-82b22c887e02fc6ebeebc8ec43fb1d348e2a6a58.tar.gz linux-3.10-82b22c887e02fc6ebeebc8ec43fb1d348e2a6a58.tar.bz2 linux-3.10-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')
-rw-r--r-- | arch/ia64/include/asm/mmzone.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/ia64/include/asm/mmzone.h b/arch/ia64/include/asm/mmzone.h index f2ca32069b3..e0de61709cf 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 */ |