mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
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:
parent
21489b923a
commit
aa9ca10d75
1 changed files with 1 additions and 6 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue