* Silence some more debug prints.
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 14 Sep 2013 17:25:04 +0000 (17:25 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 14 Sep 2013 17:25:04 +0000 (17:25 +0000)
svn path=/trunk/; revision=60106

reactos/lib/drivers/hidparser/context.c
reactos/lib/drivers/libusb/hub_controller.cpp
reactos/lib/drivers/libusb/usb_device.cpp
reactos/lib/rtl/path.c

index 3bf3662..984b9f3 100644 (file)
@@ -206,9 +206,9 @@ HidParser_BuildCollectionContext(
     //
     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
index eef9b72..7b95212 100644 (file)
@@ -2122,15 +2122,15 @@ CHubController::HandleClassInterface(
     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
index 8887115..bc7ef06 100644 (file)
@@ -1066,7 +1066,7 @@ CUSBDevice::SelectConfiguration(
     }
 
     // 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))
     {
         //
index 6f99e1d..ca68d1d 100644 (file)
@@ -649,7 +649,7 @@ RtlGetFullPathName_Ustr(
                 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;