aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/mmio-mod.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/mm/mmio-mod.c')
-rw-r--r--arch/x86/mm/mmio-mod.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/mm/mmio-mod.c b/arch/x86/mm/mmio-mod.c
index ab2bb776d310..6d6cac84c045 100644
--- a/arch/x86/mm/mmio-mod.c
+++ b/arch/x86/mm/mmio-mod.c
@@ -150,8 +150,9 @@ static void print_pte(unsigned long address)
150 "0x%08lx\n", address); 150 "0x%08lx\n", address);
151 BUG(); 151 BUG();
152 } 152 }
153 pr_info(NAME "pte for 0x%lx: 0x%lx 0x%lx\n", address, pte_val(*pte), 153 pr_info(NAME "pte for 0x%lx: 0x%llx 0x%llx\n", address,
154 pte_val(*pte) & _PAGE_PRESENT); 154 (unsigned long long)pte_val(*pte),
155 (unsigned long long)pte_val(*pte) & _PAGE_PRESENT);
155} 156}
156 157
157/* 158/*