[HAMMERTIMESTFU]

Silence "a few" DPRINTs

svn path=/trunk/; revision=65181
This commit is contained in:
Timo Kreuzer
2014-11-02 11:30:14 +00:00
parent 1087501706
commit a841fadcaa
41 changed files with 314 additions and 298 deletions
+1 -1
View File
@@ -822,7 +822,7 @@ NTAPI
HalpDispatchPower(IN PDEVICE_OBJECT DeviceObject,
IN PIRP Irp)
{
DPRINT1("HAL: PnP Driver Power!\n");
DPRINT("HAL: PnP Driver Power!\n");
return STATUS_SUCCESS;
}
+4 -4
View File
@@ -713,14 +713,14 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
case IRP_MN_START_DEVICE:
/* We only care about a PCI PDO */
DPRINT1("Start device received\n");
DPRINT("Start device received\n");
/* Complete the IRP normally */
break;
case IRP_MN_REMOVE_DEVICE:
/* Check if this is a PCI device */
DPRINT1("Remove device received\n");
DPRINT("Remove device received\n");
/* We're done */
Status = STATUS_SUCCESS;
@@ -729,7 +729,7 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
case IRP_MN_SURPRISE_REMOVAL:
/* Inherit whatever status we had */
DPRINT1("Surprise removal IRP\n");
DPRINT("Surprise removal IRP\n");
Status = Irp->IoStatus.Status;
break;
@@ -790,7 +790,7 @@ HalpDispatchPnp(IN PDEVICE_OBJECT DeviceObject,
default:
/* We don't handle anything else, so inherit the old state */
DPRINT("Illegal IRP: %lx\n", Minor);
DPRINT1("Illegal IRP: %lx\n", Minor);
Status = Irp->IoStatus.Status;
break;
}