- 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:
Aleksey Bragin 2007-12-12 21:15:17 +00:00
parent 6148b9b898
commit 9f8802a889
2 changed files with 4 additions and 4 deletions

View file

@ -399,7 +399,7 @@ FdoStartDevice(
break; break;
} }
default: 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 */ /* HACK due to a bug in ACPI driver, which doesn't report the bus number */

View file

@ -263,17 +263,17 @@ MmInit1(ULONG_PTR FirstKrnlPhysAddr,
PMEMORY_ALLOCATION_DESCRIPTOR Md; PMEMORY_ALLOCATION_DESCRIPTOR Md;
ULONG TotalPages = 0; ULONG TotalPages = 0;
DPRINT1("Base\t\tLength\t\tType\n"); DPRINT("Base\t\tLength\t\tType\n");
for (NextEntry = KeLoaderBlock->MemoryDescriptorListHead.Flink; for (NextEntry = KeLoaderBlock->MemoryDescriptorListHead.Flink;
NextEntry != &KeLoaderBlock->MemoryDescriptorListHead; NextEntry != &KeLoaderBlock->MemoryDescriptorListHead;
NextEntry = NextEntry->Flink) NextEntry = NextEntry->Flink)
{ {
Md = CONTAINING_RECORD(NextEntry, MEMORY_ALLOCATION_DESCRIPTOR, ListEntry); 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; 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 */ /* Set the page directory */