diff --git a/hypervisor/arch/x86/e820.c b/hypervisor/arch/x86/e820.c index 19614abd4..7276ca230 100644 --- a/hypervisor/arch/x86/e820.c +++ b/hypervisor/arch/x86/e820.c @@ -136,8 +136,8 @@ void init_e820(void) hv_e820[i].length = mmap[i].length; hv_e820[i].type = mmap[i].type; - dev_dbg(DBG_LEVEL_E820, "mmap table: %d type: 0x%x\n", i, mmap[i].type); - dev_dbg(DBG_LEVEL_E820, "Base: 0x%016lx length: 0x%016lx", + dev_dbg(DBG_LEVEL_E820, "mmap table: %d type: 0x%x", i, mmap[i].type); + dev_dbg(DBG_LEVEL_E820, "Base: 0x%016lx length: 0x%016lx\n", mmap[i].baseaddr, mmap[i].length); }