aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via
diff options
context:
space:
mode:
authorMichael Marineau <mike@marineau.org>2010-05-24 15:51:15 +0000
committerStefan Reinauer <stepan@openbios.org>2010-05-24 15:51:15 +0000
commitba818172cb33cdd72a2cafd32056d7e41dceca92 (patch)
treee010a3b46267b1006756f4ecacbbc910d6590dc5 /src/northbridge/via
parent8f296e8456e83e062cdb3cbdf204bd28e249adde (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/northbridge/via')
-rw-r--r--src/northbridge/via/cx700/cx700_vga.c2
-rw-r--r--src/northbridge/via/vt8623/vga.c2
-rw-r--r--src/northbridge/via/vx800/vga.c2
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;