Remove some debug messages at boot

svn path=/trunk/; revision=15420
This commit is contained in:
Hervé Poussineau 2005-05-20 01:10:00 +00:00
parent 79361fcb93
commit e34387f9c2
4 changed files with 5 additions and 3 deletions

View file

@ -162,7 +162,7 @@ DriverEntry(
IN PDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath)
{
DbgPrint("Advanced Configuration and Power Interface Bus Driver\n");
DPRINT("Advanced Configuration and Power Interface Bus Driver\n");
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = (PDRIVER_DISPATCH) ACPIDispatchDeviceControl;
DriverObject->MajorFunction[IRP_MJ_PNP] = (PDRIVER_DISPATCH) ACPIPnpControl;

View file

@ -626,7 +626,9 @@ FdoStartDevice(
}
}
#ifndef NDEBUG
ACPIPrintInfo(DeviceExtension);
#endif
/* Initialize ACPI bus manager */
AcpiStatus = bm_initialize();

View file

@ -98,7 +98,7 @@ acpi_os_vprintf(const NATIVE_CHAR *fmt, va_list args)
static char Buffer[512];
LONG Size = vsprintf(Buffer, fmt, args);
DbgPrint("%s", Buffer);
DPRINT("%s", Buffer);
return Size;
}

View file

@ -172,7 +172,7 @@ DriverEntry(
IN PDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath)
{
DbgPrint("Peripheral Component Interconnect Bus Driver\n");
DPRINT("Peripheral Component Interconnect Bus Driver\n");
DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL] = PciDispatchDeviceControl;
DriverObject->MajorFunction[IRP_MJ_PNP] = PciPnpControl;