diff --git a/arch/arm64/kernel/memory.c b/arch/arm64/kernel/memory.c index 739b03e2..b8f32d30 100644 --- a/arch/arm64/kernel/memory.c +++ b/arch/arm64/kernel/memory.c @@ -3258,7 +3258,7 @@ void *map_fixed_area(unsigned long phys, unsigned long size, int uncachable) attr |= PTATTR_UNCACHABLE; } - kprintf("map_fixed: phys: 0x%lx => 0x%lx (%d pages)\n", + dkprintf("map_fixed: phys: 0x%lx => 0x%lx (%d pages)\n", paligned, v, npages); pt = get_init_page_table(); diff --git a/arch/x86_64/kernel/memory.c b/arch/x86_64/kernel/memory.c index 8d32e51f..df545e1b 100644 --- a/arch/x86_64/kernel/memory.c +++ b/arch/x86_64/kernel/memory.c @@ -2548,7 +2548,7 @@ void *map_fixed_area(unsigned long phys, unsigned long size, int uncachable) attr |= PTATTR_UNCACHABLE; } - kprintf("map_fixed: phys: 0x%lx => 0x%lx (%d pages)\n", + dkprintf("map_fixed: phys: 0x%lx => 0x%lx (%d pages)\n", paligned, v, npages); for (i = 0; i < npages; i++) {