- Fail HwFindAdapter if VESA is disabled

- This should allow VGA to take over but it doesn't work due to a bug in videoprt

svn path=/trunk/; revision=45855
This commit is contained in:
Cameron Gutman 2010-03-05 01:09:24 +00:00
parent ea385f2fe4
commit 858705878a

View file

@ -71,6 +71,9 @@ VBEFindAdapter(
IN OUT PVIDEO_PORT_CONFIG_INFO ConfigInfo,
OUT PUCHAR Again)
{
if (VideoPortIsNoVesa())
return ERROR_DEV_NOT_EXIST;
return NO_ERROR;
}