Remove some debug messages at boot

svn path=/trunk/; revision=15425
This commit is contained in:
Hervé Poussineau 2005-05-20 02:46:26 +00:00
parent 1367527014
commit 50752743f5
2 changed files with 9 additions and 3 deletions

View file

@ -80,8 +80,14 @@ IoReportResourceForDetection(
IN ULONG DeviceListSize OPTIONAL,
OUT PBOOLEAN ConflictDetected)
{
static int warned = 0;
if (!warned)
{
DPRINT1("IoReportResourceForDetection partly implemented\n");
warned = 1;
}
*ConflictDetected = FALSE;
DPRINT1("IoReportResourceForDetection partly implemented\n");
/* FIXME: Manually indicate conflicts with KD Ports */
if (DriverList)

View file

@ -671,7 +671,7 @@ PnpRootQueryBusRelations(
/* FIXME: */
}
DPRINT1("DeviceID: %wZ PDO %p\n",
DPRINT("DeviceID: %wZ PDO %p\n",
&PdoDeviceExtension->DeviceID,
Device->Pdo);
@ -684,7 +684,7 @@ PnpRootQueryBusRelations(
/* FIXME: */
}
DPRINT1("InstanceID: %wZ PDO %p\n",
DPRINT("InstanceID: %wZ PDO %p\n",
&PdoDeviceExtension->InstanceID,
Device->Pdo);
}