From 4d252c2bb25ddd4a560ee8ce7dad738a652fd638 Mon Sep 17 00:00:00 2001 From: Balazs Gerofi Date: Tue, 2 Apr 2019 23:07:16 +0900 Subject: [PATCH] map_fixed_area(): disable debug msg Change-Id: Id6b3d001d908432c1adb6bba875e158a1424850d --- arch/arm64/kernel/memory.c | 2 +- arch/x86_64/kernel/memory.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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++) {