map_fixed_area(): disable debug msg

Change-Id: Id6b3d001d908432c1adb6bba875e158a1424850d
This commit is contained in:
Balazs Gerofi
2019-04-02 23:07:16 +09:00
parent 0cf89c5682
commit 4d252c2bb2
2 changed files with 2 additions and 2 deletions

View File

@ -3258,7 +3258,7 @@ void *map_fixed_area(unsigned long phys, unsigned long size, int uncachable)
attr |= PTATTR_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); paligned, v, npages);
pt = get_init_page_table(); pt = get_init_page_table();

View File

@ -2548,7 +2548,7 @@ void *map_fixed_area(unsigned long phys, unsigned long size, int uncachable)
attr |= PTATTR_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); paligned, v, npages);
for (i = 0; i < npages; i++) { for (i = 0; i < npages; i++) {