mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 13:21:39 +00:00
* Silence some more debug prints.
svn path=/trunk/; revision=60106
This commit is contained in:
parent
d98bd9c11f
commit
6f54336e64
4 changed files with 14 additions and 14 deletions
|
@ -206,9 +206,9 @@ HidParser_BuildCollectionContext(
|
||||||
//
|
//
|
||||||
ASSERT(CollectionSize + sizeof(HID_COLLECTION_CONTEXT) == ContextSize);
|
ASSERT(CollectionSize + sizeof(HID_COLLECTION_CONTEXT) == ContextSize);
|
||||||
|
|
||||||
DPRINT1("CollectionContext %p\n", CollectionContext);
|
DPRINT("CollectionContext %p\n", CollectionContext);
|
||||||
DPRINT1("CollectionContext RawData %p\n", CollectionContext->RawData);
|
DPRINT("CollectionContext RawData %p\n", CollectionContext->RawData);
|
||||||
DPRINT1("CollectionContext Size %lu\n", CollectionContext->Size);
|
DPRINT("CollectionContext Size %lu\n", CollectionContext->Size);
|
||||||
|
|
||||||
//
|
//
|
||||||
// done
|
// done
|
||||||
|
|
|
@ -2122,15 +2122,15 @@ CHubController::HandleClassInterface(
|
||||||
UsbDevice = PUSBDEVICE(Urb->UrbHeader.UsbdDeviceHandle);
|
UsbDevice = PUSBDEVICE(Urb->UrbHeader.UsbdDeviceHandle);
|
||||||
|
|
||||||
|
|
||||||
DPRINT1("URB_FUNCTION_CLASS_INTERFACE\n");
|
DPRINT("URB_FUNCTION_CLASS_INTERFACE\n");
|
||||||
DPRINT1("TransferFlags %x\n", Urb->UrbControlVendorClassRequest.TransferFlags);
|
DPRINT("TransferFlags %x\n", Urb->UrbControlVendorClassRequest.TransferFlags);
|
||||||
DPRINT1("TransferBufferLength %x\n", Urb->UrbControlVendorClassRequest.TransferBufferLength);
|
DPRINT("TransferBufferLength %x\n", Urb->UrbControlVendorClassRequest.TransferBufferLength);
|
||||||
DPRINT1("TransferBuffer %x\n", Urb->UrbControlVendorClassRequest.TransferBuffer);
|
DPRINT("TransferBuffer %x\n", Urb->UrbControlVendorClassRequest.TransferBuffer);
|
||||||
DPRINT1("TransferBufferMDL %x\n", Urb->UrbControlVendorClassRequest.TransferBufferMDL);
|
DPRINT("TransferBufferMDL %x\n", Urb->UrbControlVendorClassRequest.TransferBufferMDL);
|
||||||
DPRINT1("RequestTypeReservedBits %x\n", Urb->UrbControlVendorClassRequest.RequestTypeReservedBits);
|
DPRINT("RequestTypeReservedBits %x\n", Urb->UrbControlVendorClassRequest.RequestTypeReservedBits);
|
||||||
DPRINT1("Request %x\n", Urb->UrbControlVendorClassRequest.Request);
|
DPRINT("Request %x\n", Urb->UrbControlVendorClassRequest.Request);
|
||||||
DPRINT1("Value %x\n", Urb->UrbControlVendorClassRequest.Value);
|
DPRINT("Value %x\n", Urb->UrbControlVendorClassRequest.Value);
|
||||||
DPRINT1("Index %x\n", Urb->UrbControlVendorClassRequest.Index);
|
DPRINT("Index %x\n", Urb->UrbControlVendorClassRequest.Index);
|
||||||
|
|
||||||
//
|
//
|
||||||
// initialize setup packet
|
// initialize setup packet
|
||||||
|
|
|
@ -1066,7 +1066,7 @@ CUSBDevice::SelectConfiguration(
|
||||||
}
|
}
|
||||||
|
|
||||||
// informal debug print
|
// 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))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
//
|
//
|
||||||
|
|
|
@ -649,7 +649,7 @@ RtlGetFullPathName_Ustr(
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/* Fall through */
|
/* Fall through */
|
||||||
DPRINT1("RtlPathTypeDriveRelative - Using fall-through to RtlPathTypeRelative\n");
|
DPRINT("RtlPathTypeDriveRelative - Using fall-through to RtlPathTypeRelative\n");
|
||||||
|
|
||||||
case RtlPathTypeRelative: /* foo */
|
case RtlPathTypeRelative: /* foo */
|
||||||
Prefix = CurDirName->Buffer;
|
Prefix = CurDirName->Buffer;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue