display debug message on boot.

svn path=/trunk/; revision=3719
This commit is contained in:
Robert Dickenson 2002-11-10 13:30:32 +00:00
parent 3e9e0d0737
commit af405dcb05

View file

@ -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;