mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[VBEMP]
- Fix EDID reading using SCI svn path=/trunk/; revision=56119
This commit is contained in:
parent
cca153df14
commit
62bd31ab43
1 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ VBEReadEdidUsingSCI(
|
|||
VideoPortZeroMemory(&BiosRegisters, sizeof(BiosRegisters));
|
||||
BiosRegisters.Eax = VBE_DDC;
|
||||
BiosRegisters.Ebx = VBE_DDC_REPORT_CAPABILITIES;
|
||||
BiosRegisters.Ecx = VBEDeviceExtension->CurrentChildIndex;
|
||||
BiosRegisters.Ecx = ChildIndex;
|
||||
VBEDeviceExtension->Int10Interface.Int10CallBios(
|
||||
VBEDeviceExtension->Int10Interface.Context,
|
||||
&BiosRegisters);
|
||||
|
@ -137,7 +137,7 @@ VBEReadEdidUsingSCI(
|
|||
VideoPortZeroMemory(&BiosRegisters, sizeof(BiosRegisters));
|
||||
BiosRegisters.Eax = VBE_DDC;
|
||||
BiosRegisters.Ebx = VBE_DDC_BEGIN_SCL_SDA_CONTROL;
|
||||
BiosRegisters.Ecx = VBEDeviceExtension->CurrentChildIndex;
|
||||
BiosRegisters.Ecx = ChildIndex;
|
||||
VBEDeviceExtension->Int10Interface.Int10CallBios(
|
||||
VBEDeviceExtension->Int10Interface.Context,
|
||||
&BiosRegisters);
|
||||
|
|
Loading…
Reference in a new issue