- Silence memory descriptors output, since it works good now.
authorAleksey Bragin <aleksey@reactos.org>
Wed, 12 Dec 2007 21:15:17 +0000 (21:15 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Wed, 12 Dec 2007 21:15:17 +0000 (21:15 +0000)
- Silence pci.sys's debugging message.

svn path=/trunk/; revision=31186

reactos/drivers/bus/pci/fdo.c
reactos/ntoskrnl/mm/mminit.c

index 7752bc4..e92a294 100644 (file)
@@ -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 */
index 6429c21..efa8f44 100644 (file)
@@ -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 */