mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
display debug message on boot.
svn path=/trunk/; revision=3719
This commit is contained in:
@@ -158,10 +158,12 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
|
||||
UNICODE_STRING SymlinkName;
|
||||
PDEVICE_EXTENSION DeviceExtension;
|
||||
|
||||
if(detect_ps2_port() == TRUE)
|
||||
{
|
||||
} else
|
||||
if (detect_ps2_port() == TRUE) {
|
||||
DbgPrint("PS2 Port Driver version 0.0.1\n");
|
||||
} else {
|
||||
DbgPrint("PS2 port not found.\n");
|
||||
return STATUS_UNSUCCESSFUL;
|
||||
}
|
||||
|
||||
DriverObject->MajorFunction[IRP_MJ_CREATE] = PS2MouseDispatch;
|
||||
DriverObject->MajorFunction[IRP_MJ_CLOSE] = PS2MouseDispatch;
|
||||
|
||||
Reference in New Issue
Block a user