mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
- Silence memory descriptors output, since it works good now.
- Silence pci.sys's debugging message. svn path=/trunk/; revision=31186
This commit is contained in:
parent
6148b9b898
commit
9f8802a889
2 changed files with 4 additions and 4 deletions
|
@ -399,7 +399,7 @@ FdoStartDevice(
|
|||
break;
|
||||
}
|
||||
default:
|
||||
DPRINT1("Unknown resource descriptor type 0x%x\n", ResourceDescriptor->Type);
|
||||
DPRINT("Unknown resource descriptor type 0x%x\n", ResourceDescriptor->Type);
|
||||
}
|
||||
}
|
||||
/* HACK due to a bug in ACPI driver, which doesn't report the bus number */
|
||||
|
|
|
@ -263,17 +263,17 @@ MmInit1(ULONG_PTR FirstKrnlPhysAddr,
|
|||
PMEMORY_ALLOCATION_DESCRIPTOR Md;
|
||||
ULONG TotalPages = 0;
|
||||
|
||||
DPRINT1("Base\t\tLength\t\tType\n");
|
||||
DPRINT("Base\t\tLength\t\tType\n");
|
||||
for (NextEntry = KeLoaderBlock->MemoryDescriptorListHead.Flink;
|
||||
NextEntry != &KeLoaderBlock->MemoryDescriptorListHead;
|
||||
NextEntry = NextEntry->Flink)
|
||||
{
|
||||
Md = CONTAINING_RECORD(NextEntry, MEMORY_ALLOCATION_DESCRIPTOR, ListEntry);
|
||||
DPRINT1("%08lX\t%08lX\t%s\n", Md->BasePage, Md->PageCount, MemType[Md->MemoryType]);
|
||||
DPRINT("%08lX\t%08lX\t%s\n", Md->BasePage, Md->PageCount, MemType[Md->MemoryType]);
|
||||
TotalPages += Md->PageCount;
|
||||
}
|
||||
|
||||
DPRINT1("Total: %08lX (%d MB)\n", TotalPages, (TotalPages * PAGE_SIZE) / 1024 / 1024);
|
||||
DPRINT("Total: %08lX (%d MB)\n", TotalPages, (TotalPages * PAGE_SIZE) / 1024 / 1024);
|
||||
}
|
||||
|
||||
/* Set the page directory */
|
||||
|
|
Loading…
Reference in a new issue