aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Gross <jgross@suse.com>2015-01-28 01:44:25 -0500
committerDavid Vrabel <david.vrabel@citrix.com>2015-01-28 05:01:11 -0500
commit270b79338eb1bd1eb28e62994ffa7b9ecd9975d8 (patch)
tree82803574590010b3572582a9296c63c98ae0aae1
parentbf9d834a9bc54477f3745ba0bf926c8917c45680 (diff)
x86/xen: cleanup arch/x86/xen/mmu.c
Remove a nested ifdef. Signed-off-by: Juergen Gross <jgross@suse.com> Signed-off-by: David Vrabel <david.vrabel@citrix.com>
-rw-r--r--arch/x86/xen/mmu.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index 6a8bbf43e617..adca9e2b6553 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -1734,10 +1734,8 @@ static void __init xen_map_identity_early(pmd_t *pmd, unsigned long max_pfn)
1734 for (pteidx = 0; pteidx < PTRS_PER_PTE; pteidx++, pfn++) { 1734 for (pteidx = 0; pteidx < PTRS_PER_PTE; pteidx++, pfn++) {
1735 pte_t pte; 1735 pte_t pte;
1736 1736
1737#ifdef CONFIG_X86_32
1738 if (pfn > max_pfn_mapped) 1737 if (pfn > max_pfn_mapped)
1739 max_pfn_mapped = pfn; 1738 max_pfn_mapped = pfn;
1740#endif
1741 1739
1742 if (!pte_none(pte_page[pteidx])) 1740 if (!pte_none(pte_page[pteidx]))
1743 continue; 1741 continue;