diff --git a/reactos/ntoskrnl/mm/ARM3/expool.c b/reactos/ntoskrnl/mm/ARM3/expool.c index d645bef95a4..560e4d2aea0 100644 --- a/reactos/ntoskrnl/mm/ARM3/expool.c +++ b/reactos/ntoskrnl/mm/ARM3/expool.c @@ -1008,9 +1008,9 @@ InitializePool(IN POOL_TYPE PoolType, // // During development, print this out so we can see what's happening // - DPRINT1("EXPOOL: Pool Tracker Table at: 0x%p with 0x%lx bytes\n", + DPRINT("EXPOOL: Pool Tracker Table at: 0x%p with 0x%lx bytes\n", PoolTrackTable, PoolTrackTableSize * sizeof(POOL_TRACKER_TABLE)); - DPRINT1("EXPOOL: Big Pool Tracker Table at: 0x%p with 0x%lx bytes\n", + DPRINT("EXPOOL: Big Pool Tracker Table at: 0x%p with 0x%lx bytes\n", PoolBigPageTable, PoolBigPageTableSize * sizeof(POOL_TRACKER_BIG_PAGES)); // diff --git a/reactos/ntoskrnl/mm/ARM3/mminit.c b/reactos/ntoskrnl/mm/ARM3/mminit.c index 38f811b5ef1..1dc36693318 100644 --- a/reactos/ntoskrnl/mm/ARM3/mminit.c +++ b/reactos/ntoskrnl/mm/ARM3/mminit.c @@ -1180,7 +1180,7 @@ MmFreeLoaderBlock(IN PLOADER_PARAMETER_BLOCK LoaderBlock) } /* Release the PFN lock and flush the TLB */ - DPRINT1("Loader pages freed: %lx\n", LoaderPages); + DPRINT("Loader pages freed: %lx\n", LoaderPages); KeReleaseQueuedSpinLock(LockQueuePfnLock, OldIrql); KeFlushCurrentTb(); diff --git a/reactos/ntoskrnl/mm/ARM3/pagfault.c b/reactos/ntoskrnl/mm/ARM3/pagfault.c index f65d90ceb2a..1794789ed34 100644 --- a/reactos/ntoskrnl/mm/ARM3/pagfault.c +++ b/reactos/ntoskrnl/mm/ARM3/pagfault.c @@ -56,7 +56,7 @@ MiCheckForUserStackOverflow(IN PVOID Address, StackBase = Teb->NtTib.StackBase; DeallocationStack = Teb->DeallocationStack; GuranteedSize = Teb->GuaranteedStackBytes; - DPRINT1("Handling guard page fault with Stacks Addresses 0x%p and 0x%p, guarantee: %lx\n", + DPRINT("Handling guard page fault with Stacks Addresses 0x%p and 0x%p, guarantee: %lx\n", StackBase, DeallocationStack, GuranteedSize); /* Guarantees make this code harder, for now, assume there aren't any */ @@ -101,7 +101,7 @@ MiCheckForUserStackOverflow(IN PVOID Address, if ((NT_SUCCESS(Status) || (Status == STATUS_ALREADY_COMMITTED))) { /* We did it! */ - DPRINT1("Guard page handled successfully for %p\n", Address); + DPRINT("Guard page handled successfully for %p\n", Address); return STATUS_PAGE_FAULT_GUARD_PAGE; } diff --git a/reactos/ntoskrnl/mm/ARM3/pool.c b/reactos/ntoskrnl/mm/ARM3/pool.c index 798b2f9eeb6..471614aead6 100644 --- a/reactos/ntoskrnl/mm/ARM3/pool.c +++ b/reactos/ntoskrnl/mm/ARM3/pool.c @@ -482,7 +482,7 @@ MiAllocatePoolPages(IN POOL_TYPE PoolType, // Get the page bit count // i = ((SizeInPages - 1) / PTE_COUNT) + 1; - DPRINT1("Paged pool expansion: %lu %x\n", i, SizeInPages); + DPRINT("Paged pool expansion: %lu %x\n", i, SizeInPages); // // Check if there is enougn paged pool expansion space left diff --git a/reactos/ntoskrnl/po/events.c b/reactos/ntoskrnl/po/events.c index 6781c68ee83..ed549be1e8f 100644 --- a/reactos/ntoskrnl/po/events.c +++ b/reactos/ntoskrnl/po/events.c @@ -264,11 +264,11 @@ PopAddRemoveSysCapsCallback(IN PVOID NotificationStructure, /* FIXME: What do do with the capabilities? */ { - DPRINT1("Device capabilities: 0x%x (", Caps); - if (Caps & SYS_BUTTON_POWER) DbgPrint(" POWER"); - if (Caps & SYS_BUTTON_SLEEP) DbgPrint(" SLEEP"); - if (Caps & SYS_BUTTON_LID) DbgPrint(" LID"); - DbgPrint(" )\n"); + DPRINT("Device capabilities: 0x%x (", Caps); + if (Caps & SYS_BUTTON_POWER) DPRINT(" POWER"); + if (Caps & SYS_BUTTON_SLEEP) DPRINT(" SLEEP"); + if (Caps & SYS_BUTTON_LID) DPRINT(" LID"); + DPRINT(" )\n"); } SysButtonContext = ExAllocatePool(NonPagedPool, sizeof(SYS_BUTTON_CONTEXT));