One should not say the device does not exist causing the driver to fail to load... how the hell did this work before?

svn path=/trunk/; revision=1244
This commit is contained in:
Phillip Susi 2000-07-07 01:06:35 +00:00
parent 21489b923a
commit aa9ca10d75

View file

@ -125,7 +125,7 @@ VGAFindAdapter(PVOID DeviceExtension,
{ {
/* FIXME: Determine if the adapter is present */ /* FIXME: Determine if the adapter is present */
*Again = FALSE; *Again = FALSE;
return STATUS_DEVICE_DOES_NOT_EXIST; return STATUS_SUCCESS;
/* FIXME: Claim any necessary memory/IO resources for the adapter */ /* FIXME: Claim any necessary memory/IO resources for the adapter */
/* FIXME: Map resources into system memory for the adapter */ /* FIXME: Map resources into system memory for the adapter */
@ -389,11 +389,6 @@ VOID VGAQueryNumAvailModes(OUT PVIDEO_NUM_MODES NumberOfModes,
UNIMPLEMENTED; UNIMPLEMENTED;
} }
VOID VGAResetDevice(OUT PSTATUS_BLOCK StatusBlock)
{
UNIMPLEMENTED;
}
VOID VGASetColorRegisters(IN PVIDEO_CLUT ColorLookUpTable, VOID VGASetColorRegisters(IN PVIDEO_CLUT ColorLookUpTable,
OUT PSTATUS_BLOCK StatusBlock) OUT PSTATUS_BLOCK StatusBlock)
{ {