diff --git a/reactos/ntoskrnl/mm/ARM3/pfnlist.c b/reactos/ntoskrnl/mm/ARM3/pfnlist.c index 5460b486c7c..9467064354d 100644 --- a/reactos/ntoskrnl/mm/ARM3/pfnlist.c +++ b/reactos/ntoskrnl/mm/ARM3/pfnlist.c @@ -714,7 +714,7 @@ MiInsertStandbyListAtFront(IN PFN_NUMBER PageFrameIndex) PMMPFN Pfn1, Pfn2; /* Make sure the lock is held */ - DPRINT1("Inserting page: %lx into standby list !\n", PageFrameIndex); + DPRINT("Inserting page: %lx into standby list !\n", PageFrameIndex); ASSERT(KeGetCurrentIrql() == DISPATCH_LEVEL); /* Make sure the PFN is valid */ @@ -1171,7 +1171,7 @@ MiDecrementShareCount(IN PMMPFN Pfn1, TempPte.u.Soft.Prototype = 0; TempPte.u.Soft.Protection = Pfn1->OriginalPte.u.Soft.Protection; MI_WRITE_INVALID_PTE(PointerPte, TempPte); - DPRINT1("Marking PTE: %p as transition (%p - %lx)\n", PointerPte, Pfn1, MiGetPfnEntryIndex(Pfn1)); + DPRINT("Marking PTE: %p as transition (%p - %lx)\n", PointerPte, Pfn1, MiGetPfnEntryIndex(Pfn1)); } /* Put the page in transition */ diff --git a/reactos/ntoskrnl/mm/ARM3/section.c b/reactos/ntoskrnl/mm/ARM3/section.c index f6fa60441d2..ac311db7802 100644 --- a/reactos/ntoskrnl/mm/ARM3/section.c +++ b/reactos/ntoskrnl/mm/ARM3/section.c @@ -676,7 +676,7 @@ MiSegmentDelete(IN PSEGMENT Segment) if (TempPte.u.Soft.Transition == 1) { /* We can give the page back for other use */ - DPRINT1("Releasing page for transition PTE %p\n", PointerPte); + DPRINT("Releasing page for transition PTE %p\n", PointerPte); PageFrameIndex = PFN_FROM_PTE(&TempPte); Pfn1 = MI_PFN_ELEMENT(PageFrameIndex); @@ -1675,7 +1675,6 @@ MmGetImageInformation (OUT PSECTION_IMAGE_INFORMATION ImageInformation) ASSERT(MiIsRosSectionObject(SectionObject) == TRUE); /* Return the image information */ - DPRINT1("HERE!\n"); *ImageInformation = ((PROS_SECTION_OBJECT)SectionObject)->ImageSection->ImageInformation; }