mirror of
https://github.com/reactos/reactos.git
synced 2026-06-08 00:46:10 +08:00
Remove some debug messages at boot
svn path=/trunk/; revision=15420
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -626,7 +626,9 @@ FdoStartDevice(
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
ACPIPrintInfo(DeviceExtension);
|
||||
#endif
|
||||
|
||||
/* Initialize ACPI bus manager */
|
||||
AcpiStatus = bm_initialize();
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user