Fix VGA after switching to realmode_interrupt()

Signed-off-by: Michael Marineau <mike@marineau.org>
Acked-by: Stefan Reinauer <stepan@coresystems.de>




git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5583 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Michael Marineau 2010-05-24 15:51:15 +00:00 committed by Stefan Reinauer
parent 8f296e8456
commit ba818172cb
3 changed files with 3 additions and 3 deletions

View File

@ -152,7 +152,7 @@ static void vga_enable_console(void)
*/
/* int#, EAX, EBX, ECX, EDX, ESI, EDI */
realmode_interrupt(0x10, 0x4f1f, 0x8003, 0x0001, 0x0000, 0x0000, 0x0000);
realmode_interrupt(0x10, 0x4f14, 0x8003, 0x0001, 0x0000, 0x0000, 0x0000);
}
static void vga_init(device_t dev)

View File

@ -106,7 +106,7 @@ static void vga_enable_console(void)
*/
/* int#, EAX, EBX, ECX, EDX, ESI, EDI */
realmode_interrupt(0x10, 0x4f1f, 0x8003, 0x0001, 0x0000, 0x0000, 0x0000);
realmode_interrupt(0x10, 0x4f14, 0x8003, 0x0001, 0x0000, 0x0000, 0x0000);
}
static void vga_init(device_t dev)

View File

@ -152,7 +152,7 @@ static void vga_enable_console(void)
*/
/* int#, EAX, EBX, ECX, EDX, ESI, EDI */
realmode_interrupt(0x10, 0x4f1f, 0x8003, 0x0001, 0x0000, 0x0000, 0x0000);
realmode_interrupt(0x10, 0x4f14, 0x8003, 0x0001, 0x0000, 0x0000, 0x0000);
}
extern u8 acpi_sleep_type;