mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
[VBEMP]
- Promote fatal VESA BIOS errors to Error status svn path=/trunk/; revision=56261
This commit is contained in:
parent
efff43afd5
commit
a13075fb0e
1 changed files with 5 additions and 3 deletions
|
@ -250,7 +250,7 @@ VBEInitialize(PVOID HwDeviceExtension)
|
||||||
/* Verify the VBE signature. */
|
/* Verify the VBE signature. */
|
||||||
if (VideoPortCompareMemory(VBEDeviceExtension->VbeInfo.Signature, "VESA", 4) != 4)
|
if (VideoPortCompareMemory(VBEDeviceExtension->VbeInfo.Signature, "VESA", 4) != 4)
|
||||||
{
|
{
|
||||||
VideoPortDebugPrint(Warn, "No VBE BIOS present\n");
|
VideoPortDebugPrint(Error, "No VBE BIOS present\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -265,13 +265,15 @@ VBEInitialize(PVOID HwDeviceExtension)
|
||||||
if (VBEDeviceExtension->VbeInfo.Version < 0x200)
|
if (VBEDeviceExtension->VbeInfo.Version < 0x200)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
VideoPortDebugPrint(Warn, "VBE BIOS present, but incompatible version.\n");
|
VideoPortDebugPrint(Error, "VBE BIOS present, but incompatible version %d.%d\n",
|
||||||
|
VBEDeviceExtension->VbeInfo.Version / 0x100,
|
||||||
|
VBEDeviceExtension->VbeInfo.Version & 0xFF);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
VideoPortDebugPrint(Warn, "No VBE BIOS found.\n");
|
VideoPortDebugPrint(Error, "No VBE BIOS found.\n");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue