diff options
author | Michael Marineau <mike@marineau.org> | 2010-05-24 15:51:15 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-05-24 15:51:15 +0000 |
commit | ba818172cb33cdd72a2cafd32056d7e41dceca92 (patch) | |
tree | e010a3b46267b1006756f4ecacbbc910d6590dc5 /src | |
parent | 8f296e8456e83e062cdb3cbdf204bd28e249adde (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/northbridge/via/cx700/cx700_vga.c | 2 | ||||
-rw-r--r-- | src/northbridge/via/vt8623/vga.c | 2 | ||||
-rw-r--r-- | src/northbridge/via/vx800/vga.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/northbridge/via/cx700/cx700_vga.c b/src/northbridge/via/cx700/cx700_vga.c index 2da428c32f..8fd94c71ef 100644 --- a/src/northbridge/via/cx700/cx700_vga.c +++ b/src/northbridge/via/cx700/cx700_vga.c @@ -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) diff --git a/src/northbridge/via/vt8623/vga.c b/src/northbridge/via/vt8623/vga.c index eb780cafe7..933c73381a 100644 --- a/src/northbridge/via/vt8623/vga.c +++ b/src/northbridge/via/vt8623/vga.c @@ -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) diff --git a/src/northbridge/via/vx800/vga.c b/src/northbridge/via/vx800/vga.c index b57ba50e84..e43801263e 100644 --- a/src/northbridge/via/vx800/vga.c +++ b/src/northbridge/via/vx800/vga.c @@ -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; |