mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Remove some debug messages at boot
svn path=/trunk/; revision=15420
This commit is contained in:
parent
79361fcb93
commit
e34387f9c2
4 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue