diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-04-26 06:59:07 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-04-26 06:59:07 +0000 |
commit | 79255fcdb30a1e04ee25a98a4b25e63e56dba6a7 (patch) | |
tree | a653e272f2b8519b47698c69843b0058178ed437 /src/northbridge | |
parent | d2759fff554d77c486d822d45e8e917f6c1bcafc (diff) |
Set success flag in cx700 int15 handler
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5501 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r-- | src/northbridge/via/cx700/cx700_vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/northbridge/via/cx700/cx700_vga.c b/src/northbridge/via/cx700/cx700_vga.c index c9d7465a84..e36062d9d2 100644 --- a/src/northbridge/via/cx700/cx700_vga.c +++ b/src/northbridge/via/cx700/cx700_vga.c @@ -114,7 +114,7 @@ static int via_cx700_int15_handler(struct eregs *regs) if (mem_speed > 5) mem_speed = 5; - regs->ebx |= memory_mapping[mem_speed]; break; + regs->ebx |= memory_mapping[mem_speed]; res=0; break; |