* Silence some more debug prints.

svn path=/trunk/; revision=60106
This commit is contained in:
Amine Khaldi 2013-09-14 17:25:04 +00:00
parent d98bd9c11f
commit 6f54336e64
4 changed files with 14 additions and 14 deletions

View 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

View 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

View 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))
{
//

View 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;