diff options
author | Nicolas Pitre <nico@cam.org> | 2008-09-30 19:10:11 +0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-09-30 19:41:04 +0400 |
commit | da46c79a5418dd6ba006665c1535af0713bb77b9 (patch) | |
tree | cd7c3530be58cb7dc9fbd1ddd891bddedefcba21 | |
parent | dfcc64497cbbf942cdd5af4b7eb17542b62aa759 (diff) | |
download | linux-da46c79a5418dd6ba006665c1535af0713bb77b9.tar.xz |
[ARM] 5272/1: remove conditional compilation in show_pte()
The PTRS_PER_PMD != 1 condition can be evaluated with C code and
optimized at compile time.
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/arm/mm/fault.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mm/fault.c b/arch/arm/mm/fault.c index fcdae537a28f..2df8d9facf57 100644 --- a/arch/arm/mm/fault.c +++ b/arch/arm/mm/fault.c @@ -72,9 +72,8 @@ void show_pte(struct mm_struct *mm, unsigned long addr) } pmd = pmd_offset(pgd, addr); -#if PTRS_PER_PMD != 1 - printk(", *pmd=%08lx", pmd_val(*pmd)); -#endif + if (PTRS_PER_PMD != 1) + printk(", *pmd=%08lx", pmd_val(*pmd)); if (pmd_none(*pmd)) break; |