Author: akhaldi Date: Sat Sep 14 17:25:04 2013 New Revision: 60106
URL: http://svn.reactos.org/svn/reactos?rev=60106&view=rev Log: * Silence some more debug prints.
Modified: trunk/reactos/lib/drivers/hidparser/context.c trunk/reactos/lib/drivers/libusb/hub_controller.cpp trunk/reactos/lib/drivers/libusb/usb_device.cpp trunk/reactos/lib/rtl/path.c
Modified: trunk/reactos/lib/drivers/hidparser/context.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/drivers/hidparser/conte... ============================================================================== --- trunk/reactos/lib/drivers/hidparser/context.c [iso-8859-1] (original) +++ trunk/reactos/lib/drivers/hidparser/context.c [iso-8859-1] Sat Sep 14 17:25:04 2013 @@ -206,9 +206,9 @@ // ASSERT(CollectionSize + sizeof(HID_COLLECTION_CONTEXT) == ContextSize);
- DPRINT1("CollectionContext %p\n", CollectionContext); - DPRINT1("CollectionContext RawData %p\n", CollectionContext->RawData); - DPRINT1("CollectionContext Size %lu\n", CollectionContext->Size); + DPRINT("CollectionContext %p\n", CollectionContext); + DPRINT("CollectionContext RawData %p\n", CollectionContext->RawData); + DPRINT("CollectionContext Size %lu\n", CollectionContext->Size);
// // done
Modified: trunk/reactos/lib/drivers/libusb/hub_controller.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/drivers/libusb/hub_cont... ============================================================================== --- trunk/reactos/lib/drivers/libusb/hub_controller.cpp [iso-8859-1] (original) +++ trunk/reactos/lib/drivers/libusb/hub_controller.cpp [iso-8859-1] Sat Sep 14 17:25:04 2013 @@ -2122,15 +2122,15 @@ UsbDevice = PUSBDEVICE(Urb->UrbHeader.UsbdDeviceHandle);
- DPRINT1("URB_FUNCTION_CLASS_INTERFACE\n"); - DPRINT1("TransferFlags %x\n", Urb->UrbControlVendorClassRequest.TransferFlags); - DPRINT1("TransferBufferLength %x\n", Urb->UrbControlVendorClassRequest.TransferBufferLength); - DPRINT1("TransferBuffer %x\n", Urb->UrbControlVendorClassRequest.TransferBuffer); - DPRINT1("TransferBufferMDL %x\n", Urb->UrbControlVendorClassRequest.TransferBufferMDL); - DPRINT1("RequestTypeReservedBits %x\n", Urb->UrbControlVendorClassRequest.RequestTypeReservedBits); - DPRINT1("Request %x\n", Urb->UrbControlVendorClassRequest.Request); - DPRINT1("Value %x\n", Urb->UrbControlVendorClassRequest.Value); - DPRINT1("Index %x\n", Urb->UrbControlVendorClassRequest.Index); + DPRINT("URB_FUNCTION_CLASS_INTERFACE\n"); + DPRINT("TransferFlags %x\n", Urb->UrbControlVendorClassRequest.TransferFlags); + DPRINT("TransferBufferLength %x\n", Urb->UrbControlVendorClassRequest.TransferBufferLength); + DPRINT("TransferBuffer %x\n", Urb->UrbControlVendorClassRequest.TransferBuffer); + DPRINT("TransferBufferMDL %x\n", Urb->UrbControlVendorClassRequest.TransferBufferMDL); + DPRINT("RequestTypeReservedBits %x\n", Urb->UrbControlVendorClassRequest.RequestTypeReservedBits); + DPRINT("Request %x\n", Urb->UrbControlVendorClassRequest.Request); + DPRINT("Value %x\n", Urb->UrbControlVendorClassRequest.Value); + DPRINT("Index %x\n", Urb->UrbControlVendorClassRequest.Index);
// // initialize setup packet
Modified: trunk/reactos/lib/drivers/libusb/usb_device.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/drivers/libusb/usb_devi... ============================================================================== --- trunk/reactos/lib/drivers/libusb/usb_device.cpp [iso-8859-1] (original) +++ trunk/reactos/lib/drivers/libusb/usb_device.cpp [iso-8859-1] Sat Sep 14 17:25:04 2013 @@ -1066,7 +1066,7 @@ }
// informal debug print - DPRINT1("[%s] SelectConfiguration New Configuration %x Old Configuration %x Result %lx\n", m_USBType, ConfigurationIndex, m_ConfigurationIndex, Status); + DPRINT("[%s] SelectConfiguration New Configuration %x Old Configuration %x Result %lx\n", m_USBType, ConfigurationIndex, m_ConfigurationIndex, Status); if (!NT_SUCCESS(Status)) { //
Modified: trunk/reactos/lib/rtl/path.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/rtl/path.c?rev=60106&am... ============================================================================== --- trunk/reactos/lib/rtl/path.c [iso-8859-1] (original) +++ trunk/reactos/lib/rtl/path.c [iso-8859-1] Sat Sep 14 17:25:04 2013 @@ -649,7 +649,7 @@ break; } /* Fall through */ - DPRINT1("RtlPathTypeDriveRelative - Using fall-through to RtlPathTypeRelative\n"); + DPRINT("RtlPathTypeDriveRelative - Using fall-through to RtlPathTypeRelative\n");
case RtlPathTypeRelative: /* foo */ Prefix = CurDirName->Buffer;