mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[USBPORT] Reduces output of debug messages.
This commit is contained in:
parent
816b3a572c
commit
2d4bd7b744
2 changed files with 7 additions and 7 deletions
|
@ -326,10 +326,10 @@ USBPORT_PdoInternalDeviceControl(IN PDEVICE_OBJECT PdoDevice,
|
|||
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
||||
IoCtl = IoStack->Parameters.DeviceIoControl.IoControlCode;
|
||||
|
||||
DPRINT("USBPORT_PdoInternalDeviceControl: PdoDevice - %p, Irp - %p, IoCtl - %x\n",
|
||||
PdoDevice,
|
||||
Irp,
|
||||
IoCtl);
|
||||
//DPRINT("USBPORT_PdoInternalDeviceControl: PdoDevice - %p, Irp - %p, IoCtl - %x\n",
|
||||
// PdoDevice,
|
||||
// Irp,
|
||||
// IoCtl);
|
||||
|
||||
if (IoCtl == IOCTL_INTERNAL_USB_SUBMIT_URB)
|
||||
{
|
||||
|
|
|
@ -148,8 +148,8 @@ USBPORT_SplitBulkInterruptTransfer(IN PDEVICE_OBJECT FdoDevice,
|
|||
|
||||
InitializeListHead(&tmplist);
|
||||
|
||||
DPRINT1("USBPORT_SplitBulkInterruptTransfer: TransferBufferLength - %x, NeedSplits - %x\n",
|
||||
TransferBufferLength, NeedSplits);
|
||||
DPRINT("USBPORT_SplitBulkInterruptTransfer: TransferBufferLength - %x, NeedSplits - %x\n",
|
||||
TransferBufferLength, NeedSplits);
|
||||
|
||||
if (!NeedSplits)
|
||||
{
|
||||
|
@ -214,7 +214,7 @@ Exit:
|
|||
|
||||
while (!IsListEmpty(&tmplist))
|
||||
{
|
||||
DPRINT1("USBPORT_SplitBulkInterruptTransfer: ... \n");
|
||||
DPRINT("USBPORT_SplitBulkInterruptTransfer: ... \n");
|
||||
|
||||
SplitTransfer = CONTAINING_RECORD(tmplist.Flink,
|
||||
USBPORT_TRANSFER,
|
||||
|
|
Loading…
Reference in a new issue