aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-04-15 12:41:11 +0000
committerStefan Reinauer <stepan@openbios.org>2010-04-15 12:41:11 +0000
commit7bb34db21abc748b718a692525b247e4b6e26747 (patch)
tree122546d7b6ac83ce28ee393e24a23e36fea27cbd /src
parent23836e2345282151b0b46de6cdcd2bb2faee87f6 (diff)
don't leave VGA disabled by default on thomson ip1000
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5443 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/thomson/ip1000/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/thomson/ip1000/mainboard.c b/src/mainboard/thomson/ip1000/mainboard.c
index e8b87baa88..c78a710321 100644
--- a/src/mainboard/thomson/ip1000/mainboard.c
+++ b/src/mainboard/thomson/ip1000/mainboard.c
@@ -113,8 +113,8 @@ static int int15_handler(void)
switch (M.x86.R_AX) {
case 0x5f35: /* Boot Display */
M.x86.R_AX = 0x005f; // Success
- M.x86.R_CL = BOOT_DISPLAY_TV2;
- //M.x86.R_CL = BOOT_DISPLAY_DEFAULT;
+ //M.x86.R_CL = BOOT_DISPLAY_TV2;
+ M.x86.R_CL = BOOT_DISPLAY_DEFAULT;
break;
case 0x5f36: /* Boot TV Format Hook */
printk(BIOS_DEBUG, "Boot TV Format Hook. TODO\n");